@charset "utf-8";
/*
  Mobile-first stylesheet for the redesigned lista.cfm booking page
  and its shared header.cfm / footer.cfm includes.

  Color scheme preserved from layox.css:
    navy    #264f7d  (fox_topleft / fox_midleft / fox_footleft)
    orange  #FF3300  (fox_topright)
    blue    #356ba2  (fox_midleft accent)
    gray    #dbe2e8  (fox_midright_gray)
    footer  #264f7d + indfiles/footback.jpg  (fox_footright's visible navy gradient)
    amber   #FFC000  (fox_footright text)
    body    #666     (base text color)
    link    #006
    red     #F00     (required markers)
*/

:root {
	--color-navy: #264f7d;
	--color-orange: #FF3300;
	--color-blue: #356ba2;
	--color-gray-light: #dbe2e8;
	--color-footer-gray: #98a4b1;
	--color-amber: #FFC000;
	--color-text: #666;
	--color-text-dark: #333;
	--color-link: #006;
	--color-red: #F00;
	--color-white: #fff;
	--radius: 6px;
	--shadow: 1px 1px 3px rgba(102, 102, 102, 0.3);
	--max-width: 900px;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: var(--color-text);
	background-color: #eef1f4;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-link);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Header ---------- */

.site-header {
	background-color: var(--color-navy);
	box-shadow: var(--shadow);
}

.site-header__bar {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.site-header__logo {
	width: 36px;
	height: auto;
	flex: 0 0 auto;
}

.site-header__brandname-wrap {
	display: none;
	align-items: center;
	min-width: 0;
	flex: 1 1 auto;
	background-color: var(--color-orange);
	background-image: url(../indfiles/orangeback.jpg);
	background-repeat: repeat;
	padding: 5px 10px;
	border-radius: 4px;
	box-shadow: var(--shadow);
}

.site-header__brandname {
	width: 110px;
	max-width: 45vw;
	height: auto;
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 38px;
	height: 34px;
	padding: 0;
	background: var(--color-navy);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-white);
}

.site-nav {
	max-height: 0;
	overflow: hidden;
	background-color: var(--color-blue);
	transition: max-height 0.25s ease;
}

.site-nav.is-open {
	max-height: 400px;
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 8px 15px;
	max-width: var(--max-width);
	margin-inline: auto;
}

.site-nav li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 4px;
	color: var(--color-white);
	font-size: 14px;
}

.site-nav a:hover {
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.08);
}

.site-nav img {
	width: 22px;
	height: 22px;
}

/* ---------- Main content ---------- */

.site-main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 15px;
}

.page-title {
	background-color: var(--color-gray-light);
	color: #000;
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 1px;
	padding: 14px 15px;
	border-radius: var(--radius) var(--radius) 0 0;
	box-shadow: var(--shadow);
}

.form-card {
	background-color: var(--color-white);
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: var(--shadow);
	padding: 15px;
}

/* ---------- Form ---------- */

.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-field label {
	font-size: 12px;
	font-weight: bold;
	color: var(--color-text);
}

.form-field .required {
	color: var(--color-red);
	font-weight: bold;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field select {
	font-size: 16px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
	background-color: var(--color-white);
	color: var(--color-text-dark);
}

.form-field input:focus,
.form-field select:focus {
	outline: 2px solid var(--color-blue);
	outline-offset: 1px;
}

.form-actions {
	display: flex;
	justify-content: flex-start;
}

.btn-submit {
	font-size: 15px;
	font-weight: bold;
	color: var(--color-white);
	background-color: var(--color-navy);
	border: 0;
	border-radius: var(--radius);
	padding: 12px 28px;
	cursor: pointer;
	width: 100%;
}

.btn-submit:hover {
	background-color: var(--color-blue);
}

/* ---------- Footer ---------- */

.site-footer {
	background-color: var(--color-navy);
	background-image: url(/indfiles/footback.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: var(--color-amber);
	margin-top: 20px;
}

.site-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.site-footer__logo {
	width: 40px;
}

.site-footer__links a {
	color: var(--color-amber);
	font-size: 12px;
}

.site-footer__links a:hover {
	text-decoration: underline;
}

.site-footer__copy {
	font-size: 11px;
	margin: 0;
}

/* ---------- Tablet and up ---------- */

@media (min-width: 600px) {
	.form-grid {
		grid-template-columns: 1fr 1fr;
	}

	.form-grid .form-field--full {
		grid-column: 1 / -1;
	}

	.btn-submit {
		width: auto;
	}
}

/* ---------- Desktop: restore inline nav ---------- */

@media (min-width: 768px) {
	.nav-toggle {
		display: none;
	}

	.site-header__bar {
		padding: 15px 20px;
	}

	.site-header__logo {
		width: 80px;
	}

	.site-header__brandname-wrap {
		display: flex;
		padding: 15px 20px;
	}

	.site-header__brandname {
		width: 60%;
		max-width: 480px;
	}

	.site-nav {
		max-height: none;
		overflow: visible;
	}

	.site-nav ul {
		display: flex;
		flex-wrap: wrap;
		padding: 0 15px;
	}

	.site-nav li {
		flex: 1 1 auto;
	}

	.site-nav li + li {
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.15);
	}

	.site-nav a {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		font-size: 11px;
		padding: 10px 6px;
	}

	.site-footer__inner {
		flex-direction: row;
		justify-content: center;
		text-align: left;
	}
}

/* ---------- Announcements ---------- */
.announce-list,
.announce-detail {
	width: 100%;
}

.announce-list td,
.announce-detail td {
	padding: 2px 0;
}

.announce-list .title_twoptfive a {
	font-size: 16px;
	font-weight: bold;
	color: var(--color-link);
}

.announce-list .text_body,
.announce-detail .text_read {
	color: var(--color-text);
	line-height: 1.6;
}

/* Rich text from the editor: keep wide content inside the card. */
.announce-detail .text_read img {
	max-width: 100%;
	height: auto;
}

.announce-detail .text_read table {
	max-width: 100%;
	border-collapse: collapse;
}

.announce-detail .text_read td,
.announce-detail .text_read th {
	border: 1px solid var(--color-gray-light);
	padding: 6px;
}
