:root {
	--al-navy: #0d3b66;
	--al-red: #b22234;
	--al-navy-dark: #08263f;
	--text: #1f2937;
	--bg: #f8fafc;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: var(--text);
	background: var(--bg);
}

.header-brand {
	font-weight: 700;
	color: #111827;
}

.site-nav a {
	color: #111827;
	font-weight: 600;
}

.hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	color: #ffffff;
	background: linear-gradient(135deg, #0b2742, #155e75);
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.hero-content {
	position: relative;
	z-index: 1;
}

.btn-navy {
	background: var(--al-navy);
	color: #ffffff;
}

.btn-navy:hover {
	background: var(--al-navy-dark);
	color: #ffffff;
}

.hero-stat-card {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 14px;
	padding: 18px;
	backdrop-filter: blur(2px);
}

.hero-stat-card li {
	padding: 4px 0;
	font-size: 1rem;
}

.availability-calendar {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px;
	background: #f9fafb;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
}

.calendar-cell {
	border-radius: 8px;
	padding: 8px 4px;
	text-align: center;
	font-size: 0.9rem;
	border: 1px solid #d1d5db;
	background: #ffffff;
}

.calendar-cell.calendar-head {
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	color: #374151;
	background: #eef2ff;
	border-color: #c7d2fe;
}

.calendar-cell.calendar-empty {
	background: transparent;
	border-color: transparent;
}

.calendar-cell.calendar-day {
	font-weight: 600;
	min-height: 40px;
}

.calendar-cell.calendar-day.available {
	background: #ecfdf5;
	border-color: #86efac;
	color: #14532d;
}

.calendar-cell.calendar-day.blocked {
	background: #fee2e2;
	border-color: #fca5a5;
	color: #7f1d1d;
}

.calendar-legend {
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.legend-box {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	display: inline-block;
	border: 1px solid #9ca3af;
}

.legend-box.legend-available {
	background: #ecfdf5;
	border-color: #86efac;
}

.legend-box.legend-blocked {
	background: #fee2e2;
	border-color: #fca5a5;
}

.gallery-category {
	border-top: 1px solid #e5e7eb;
	padding-top: 16px;
}

.gallery-featured-link,
.gallery-thumb-link {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-featured-link:hover,
.gallery-thumb-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(2, 6, 23, 0.12);
}

.gallery-featured-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.gallery-thumb-image {
	width: 100%;
	height: 92px;
	object-fit: cover;
}

@media (max-width: 991.98px) {
	.gallery-featured-image {
		height: 240px;
	}
}
