/* cmsms stylesheet: Kricom_Stylesheet modified: 06/26/26 05:52:54 */

body {
	font-family: 'Raleway', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
	color: #222;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px;
	background: linear-gradient(
		180deg,
		#d2b7be 0%,
		#f8eef0 100%
	);
}

.flex-wrapper {
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	gap: 10px;
}

.header {
	grid-column: 1 / 4;
	background: linear-gradient(
		135deg,
		#850b09,
		#ed0202
	);
	color: white;
	text-align: center;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.breadcrumb {
	color: white;
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.menu {
	background: #850b09;
	border-radius: 12px;
	margin: 10px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.box-left,
.box-right,
.box-center {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.box-left {
	padding: 15px;
	background: #f7e7e6;
}

.box-right {
	padding: 15px;
	background: #f7e7e6;
}

.box-center {
	padding: 25px;
	min-height: 500px;
}

.box-footer {
	grid-column: 1 / 4;
	background: #2b0b0b;
	color: #f0d8d8;
	text-align: center;
	font-size: 0.85rem;
	padding: 15px;
	border-radius: 12px;
	margin-top: 10px;
}

a {
	color: #3091b1;
	text-decoration: none;
}

a:hover,
a.menuactive {
	color: #ed0202;
}

h1 {
	font-family: 'Sacramento', cursive;
	font-size: 4rem;
	margin: 0;
}

h1 a,
h1 a:hover {
	color: white;
	text-decoration: none;
}

h2,
h3,
h4 {
	font-family: 'Raleway', sans-serif;
	color: #333;
}

h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.3rem;
	margin-top: 1rem;
	text-transform: uppercase;
}

#primary-nav {
	padding: 0;
	margin: 0;
}

#menu {
	display: flex;
	justify-content: center;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu li {
	position: relative;
	display: inline-block;
}

#menu li a {
	display: block;
	padding: 15px 20px;
	color: white;
	font-weight: 600;
}

#menu li:hover {
	background: #ed0202;
}

.parent {
	border-radius: 8px;
	background: #d2b7be;
}

.parent:hover {
	background: #850b09;
}

.parent ul {
	display: none;
	padding: 0;
	margin: 0;
}

.divider .parent {
	background: #850b09;
	color: white;
	margin-bottom: 0.2rem;
}

.divider .menuparent:hover {
	background: #3091b1;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
	background: white;
}

table th {
	background: #850b09;
	color: white;
	padding: 10px;
}

table td {
	padding: 10px;
	border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
	.flex-wrapper {
		grid-template-columns: 1fr;
	}

	.header,
	.box-footer {
		grid-column: auto;
	}

	.box-left,
	.box-right,
	.box-center {
		width: auto;
	}

	#menu {
		flex-direction: column;
	}

	#menu li {
		display: block;
	}
}
