/* ---------------------------------------------------------------------------
 * elgato-theme.css — site chrome for the standalone calendar page.
 *
 * embed.php is linked directly from elgatosportfishing.com ("CHECK CALENDAR",
 * target="_blank"), so visitors land on it as a real page, not inside an
 * iframe. This gives it the boat's masthead, a container, and a footer so it
 * is not a dead end.
 *
 * Scoped under .eg-* so it cannot collide with Bootstrap 3 or schedule.css.
 * ------------------------------------------------------------------------ */

body {
	background: #f4f5f7;
	color: #23282d;
	-webkit-font-smoothing: antialiased;
}

/* ----- masthead ------------------------------------------------------- */

.eg-masthead {
	background: #ffffff;
	border-bottom: 1px solid #e3e5e8;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .04);
}

.eg-masthead-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 28px;
}

.eg-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	flex-shrink: 0;
}

.eg-brand:hover,
.eg-brand:focus {
	text-decoration: none;
}

.eg-brand img {
	height: 58px;
	width: auto;
	display: block;
}

.eg-brand-text {
	display: block;
	line-height: 1.15;
}

.eg-brand-name {
	display: block;
	font-family: "Cinzel", Georgia, serif;
	font-size: 20px;
	letter-spacing: .06em;
	color: #14213d;
	text-transform: uppercase;
}

.eg-brand-tag {
	display: block;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #6b7280;
	margin-top: 3px;
}

/* ----- nav ------------------------------------------------------------ */

.eg-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 22px;
}

.eg-nav a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #3d4451;
	text-decoration: none;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.eg-nav a:hover,
.eg-nav a:focus {
	color: #0b6fb8;
	border-bottom-color: #0b6fb8;
	text-decoration: none;
}

.eg-nav a.is-current {
	color: #14213d;
	border-bottom-color: #14213d;
}

/* ----- page body ------------------------------------------------------ */

.eg-page {
	max-width: 1180px;
	margin: 26px auto 34px;
	padding: 0 20px;
}

.eg-pagehead {
	text-align: center;
	margin-bottom: 20px;
}

.eg-pagehead h1 {
	font-family: "Cinzel", Georgia, serif;
	font-size: 27px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #14213d;
	margin: 0 0 8px;
}

.eg-pagehead p {
	margin: 0;
	color: #5b616e;
	font-size: 14px;
}

.eg-pagehead .eg-phone {
	color: #0b6fb8;
	font-weight: 700;
	white-space: nowrap;
}

/* The card the calendar sits in. */
.eg-card {
	background: #ffffff;
	border: 1px solid #e3e5e8;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .05);
	padding: 22px 20px 26px;
}

/* ----- footer --------------------------------------------------------- */

.eg-footer {
	background: #14213d;
	color: #b9c0d0;
	padding: 26px 20px;
	margin-top: 10px;
}

.eg-footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px 24px;
	font-size: 13px;
}

.eg-footer a {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.eg-footer a:hover,
.eg-footer a:focus {
	color: #ffffff;
	border-bottom-color: #ffffff;
	text-decoration: none;
}

.eg-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.eg-footer-copy {
	color: #8e97ab;
}

/* ----- small screens -------------------------------------------------- */

@media (max-width: 767px) {
	.eg-masthead-inner {
		justify-content: center;
		text-align: center;
	}

	.eg-nav {
		margin-left: 0;
		justify-content: center;
		gap: 2px 16px;
	}

	.eg-nav a {
		font-size: 11px;
		letter-spacing: .06em;
	}

	.eg-brand img {
		height: 48px;
	}

	.eg-page {
		padding: 0 12px;
		margin-top: 18px;
	}

	.eg-card {
		padding: 16px 12px 20px;
	}

	.eg-pagehead h1 {
		font-size: 22px;
	}

	.eg-footer-inner {
		justify-content: center;
		text-align: center;
	}
}
