/* ══════════════════════════════════════════════════════════════════════
   AquaBaltica – Material Design inspired CSS
   ══════════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────────── */
:root {
	--primary: #0077b6;
	--primary-dk: #005f8e;
	--primary-lt: #00b4d8;
	--accent: #48cae4;
	--accent-soft: #caf0f8;
	--sand: #fff7ed;
	--surface: #ffffff;
	--bg: #f5f9fc;
	--text: #1a1a2e;
	--text-muted: #6b7280;
	--border: #e2e8f0;
	--shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.07);
	--shadow-md: 0 14px 36px rgba(15, 23, 42, 0.11);
	--shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
	--shadow-primary: 0 12px 32px rgba(0, 119, 182, 0.28);
	--gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
	--radius: 18px;
	--radius-sm: 11px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}
@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.35);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(0, 180, 216, 0);
	}
}
@keyframes float-up {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}
@keyframes fade-in-up {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Reset & Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	font-family: 'Roboto', sans-serif;
	background: radial-gradient(circle at top left, rgba(72, 202, 228, 0.15), transparent 32rem), linear-gradient(180deg, #fbfdff 0%, var(--bg) 22rem);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: var(--primary);
	text-decoration: none;
}
a:hover {
	color: var(--primary-dk);
}
ul {
	list-style: none;
}

/* ── Container ──────────────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ── Typography ─────────────────────────────────────────────────────── */
h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
}
h4,
h5,
h6 {
	font-weight: 500;
}
.section-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	color: var(--text);
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--text) 40%, var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-sub {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 3rem;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 700;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	box-shadow: 0 10px 22px rgba(0, 119, 182, 0.08);
}
.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-lt), var(--primary));
	background-size: 200% auto;
	color: #fff;
	transition:
		background-position 0.5s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}
.btn-primary:hover {
	background-position: right center;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-primary);
}
.btn-outline {
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--primary);
	color: var(--primary);
}
.btn-outline:hover {
	background: linear-gradient(135deg, var(--primary), var(--primary-lt));
	color: #fff;
	transform: translateY(-2px);
}
.btn-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}
.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}
.btn-danger {
	background: #ef4444;
	color: #fff;
}
.btn-danger:hover {
	background: #dc2626;
}
.btn-sm {
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
}
.btn-success {
	background: #10b981;
	color: #fff;
}
.btn-success:hover {
	background: #059669;
}
.mt-1 {
	margin-top: 0.75rem;
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(18px) saturate(150%);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	border-bottom: 1px solid rgba(226, 232, 240, 0.72);
	transition: var(--transition);
}
.navbar.scrolled {
	box-shadow: var(--shadow-md);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}
.brand-icon {
	font-size: 1.6rem;
}
.brand strong {
	color: var(--primary-dk);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.navbar.scrolled {
	box-shadow: 0 4px 24px rgba(0, 119, 182, 0.13);
	border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}
.nav-links li .nav-link {
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-sm);
	color: var(--text);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}
.nav-links li .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 70%;
	height: 2px;
	border-radius: 99px;
	background: var(--gradient-main);
	transition: transform 0.25s ease;
}
.nav-links li .nav-link:hover,
.nav-links li .nav-link.active {
	background: rgba(0, 180, 216, 0.1);
	color: var(--primary);
}
.nav-links li .nav-link:hover::after,
.nav-links li .nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}
.nav-links li .nav-link.active {
	font-weight: 600;
}
.nav-btn {
	padding: 0.5rem 1.4rem !important;
}
.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text);
}

/* ── Alert Banner ───────────────────────────────────────────────────── */
.alert-banner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-weight: 500;
	position: relative;
	top: 70px;
}
.alert-success {
	background: #d1fae5;
	color: #065f46;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #00254a;
	color: #fff;
	text-align: center;
	padding: 8.5rem 1.5rem 4.5rem;
	position: relative;
	overflow: hidden;
}
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
	opacity: 1;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 42%, rgba(72, 202, 228, 0.18), transparent 28rem), linear-gradient(to bottom, rgba(0, 32, 68, 0.48) 0%, rgba(0, 70, 120, 0.5) 58%, rgba(0, 20, 56, 0.78) 100%);
	z-index: 1;
}
.hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 90px;
	background: linear-gradient(180deg, transparent, var(--bg));
	z-index: 1;
}
.hero-badge {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px);
	padding: 0.55rem 1.3rem;
	border-radius: 50px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow:
		0 12px 32px rgba(0, 0, 0, 0.14),
		0 0 0 0 rgba(72, 202, 228, 0);
	animation:
		fade-in-up 0.5s ease both,
		pulse-glow 3s 1s ease infinite;
}
.hero h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	margin-bottom: 1rem;
	line-height: 0.98;
	letter-spacing: -0.03em;
	text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}
.hero p {
	font-size: clamp(1rem, 2vw, 1.25rem);
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto 2.5rem;
}
.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.hero-stats {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 4rem;
}
.hero-stat {
	text-align: center;
	min-width: 145px;
	padding: 1rem 1.2rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	backdrop-filter: blur(12px);
	transition: var(--transition);
	cursor: default;
}
.hero-stat:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(72, 202, 228, 0.5);
	animation: pulse-glow 1.5s ease infinite;
	transform: translateY(-3px);
}
.hero-stat .number {
	font-size: 2.5rem;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
}
.hero-stat .label {
	font-size: 0.85rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ── Sections ────────────────────────────────────────────────────────── */
.section {
	padding: 5.5rem 0;
}
.section-alt {
	background: linear-gradient(180deg, #fff, #f8fcff);
}
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}
.section-header::after {
	content: '';
	display: block;
	width: 76px;
	height: 4px;
	margin: 1.1rem auto 0;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
	background-size: 200% auto;
	animation: shimmer 3s linear infinite;
}

/* ── Cards ───────────────────────────────────────────────────────────── */
.card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(226, 232, 240, 0.85);
}
.card:hover {
	box-shadow:
		var(--shadow-lg),
		0 -3px 0 0 var(--primary-lt) inset;
	transform: translateY(-8px);
	border-color: rgba(0, 180, 216, 0.25);
}
/* prevent buttons inside clickable card from double-navigating */
.card a,
.card button {
	position: relative;
	z-index: 1;
}
.card-img {
	height: 220px;
	object-fit: cover;
	width: 100%;
	background: linear-gradient(135deg, #00b4d8, #48cae4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	overflow: hidden;
	position: relative;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img {
	transform: scale(1.07);
}
.card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.16));
	pointer-events: none;
}
.card-body {
	padding: 1.65rem;
}
.card-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--text);
}
.card-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}
.card-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
	background: rgba(202, 240, 248, 0.6);
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(0, 180, 216, 0.16);
}
.chip .material-icons {
	font-size: 1rem;
}

/* ── Grid helpers ────────────────────────────────────────────────────── */
.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}
.grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
	gap: 2rem;
}
.grid-2 > * {
	min-width: 0;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
}

/* ── Features strip ─────────────────────────────────────────────────── */
.features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}
.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(180deg, #fff, #fbfdff);
	padding: 2rem 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	flex: 1 1 180px;
	max-width: 220px;
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(226, 232, 240, 0.8);
}
.feature-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}
.feature-item:hover .feature-icon {
	transform: scale(1.12) rotate(-4deg);
	box-shadow: 0 16px 36px rgba(0, 119, 182, 0.32);
}
.feature-icon {
	transition:
		transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.35s ease;
}
.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 12px 24px rgba(0, 119, 182, 0.18);
}
.feature-icon .material-icons {
	font-size: 1.6rem;
}
.feature-item h4 {
	font-size: 0.95rem;
	font-weight: 600;
}
.feature-item p {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ── Pricing table ───────────────────────────────────────────────────── */
.price-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	min-width: 0;
	border: 1px solid rgba(226, 232, 240, 0.85);
	transition: var(--transition);
}
.price-card:hover {
	box-shadow:
		var(--shadow-lg),
		0 -3px 0 0 var(--primary-lt) inset;
	transform: translateY(-5px);
	border-color: rgba(0, 180, 216, 0.25);
}
.price-card-header {
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 11rem), linear-gradient(135deg, var(--primary-dk), var(--primary-lt));
	color: #fff;
	padding: 1.5rem;
}
.price-card-header h3 {
	font-size: 1.4rem;
}
.price-card-header p {
	opacity: 0.85;
	font-size: 0.9rem;
}
.price-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--radius);
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 300px;
}
.price-table th {
	background: #f8fbfe;
	padding: 0.75rem 1.25rem;
	text-align: left;
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.price-table td {
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid var(--border);
	font-size: 0.95rem;
}
.price-table tbody tr:hover td {
	background: #f8fbfe;
}
.price-table tr:last-child td {
	border-bottom: none;
}
.price-amount {
	font-weight: 700;
	color: var(--primary);
	font-size: 1.1rem;
}

/* ── Gallery grid ────────────────────────────────────────────────────── */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
}
.gallery-item {
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
	position: relative;
	box-shadow: var(--shadow-sm);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.gallery-item:hover img {
	transform: scale(1.08);
}
.gallery-item::after {
	content: 'zoom_in';
	font-family: 'Material Icons';
	position: absolute;
	inset: 0;
	background: rgba(0, 60, 120, 0.52);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.8rem;
	opacity: 0;
	transition: var(--transition);
	border-radius: var(--radius-sm);
}
.gallery-item:hover::after {
	opacity: 1;
}
.gallery-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0077b6, #48cae4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.5);
}

/* ── News ────────────────────────────────────────────────────────────── */
.news-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
	border: 1px solid rgba(226, 232, 240, 0.85);
	border-left: 3px solid var(--accent);
}
.news-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-left-color: var(--primary);
}
.news-card-body {
	padding: 1.5rem;
	flex: 1;
}
.news-date {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
.news-date .material-icons {
	font-size: 1rem;
}
.news-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}
.news-card p {
	color: var(--text-muted);
	font-size: 0.93rem;
}
.news-card-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid var(--border);
}

/* ── Contact form ────────────────────────────────────────────────────── */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}
.contact-info h2 {
	margin-bottom: 1rem;
}
.contact-info p {
	color: var(--text-muted);
	margin-bottom: 2rem;
}
.info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.info-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(0, 119, 182, 0.2);
}
.info-icon .material-icons {
	font-size: 1.3rem;
}
.info-item h4 {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 0.15rem;
}
.info-item p,
.info-item a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text);
}
.form-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 2rem;
	border: 1px solid rgba(226, 232, 240, 0.85);
}
.form-group {
	margin-bottom: 1.25rem;
}
.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
	color: var(--text-muted);
}
.form-control {
	width: 100%;
	padding: 0.82rem 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-family: 'Roboto', sans-serif;
	transition: var(--transition);
	background: #fbfdff;
}
.form-control:focus {
	outline: none;
	border-color: var(--primary-lt);
	background: #fff;
	box-shadow:
		0 0 0 4px rgba(0, 180, 216, 0.15),
		0 2px 8px rgba(0, 119, 182, 0.1);
	transform: none;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
textarea.form-control {
	resize: vertical;
	min-height: 130px;
}
select.form-control {
	cursor: pointer;
}

/* ── Apartment Detail ────────────────────────────────────────────────── */
.apt-detail-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	align-items: start;
}
.apt-detail-grid > div {
	min-width: 0;
}
@media (max-width: 768px) {
	.apt-detail-grid {
		grid-template-columns: 1fr;
	}
	.apt-detail-grid > div:last-child {
		order: -1;
	}
}

/* ── Reservation page ────────────────────────────────────────────────── */
.reservation-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 2rem;
	align-items: start;
}
.res-sidebar {
	background: linear-gradient(180deg, #fff, #fbfdff);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1.5rem;
	border: 1px solid rgba(226, 232, 240, 0.85);
}
.res-sidebar h3 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}
.res-info-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.95rem;
}
.res-info-item:last-child {
	border-bottom: none;
}
.res-info-item .material-icons {
	color: var(--primary);
	font-size: 1.2rem;
}

/* ── Page hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
	background:
		radial-gradient(circle at 50% 15%, rgba(72, 202, 228, 0.22), transparent 24rem),
		linear-gradient(rgba(0, 42, 82, 0.68), rgba(0, 72, 120, 0.58)),
		url('/images/hero/tlo-i-0.jpg') center center / cover no-repeat;
	color: #fff;
	padding: 8rem 1.5rem 3.8rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 52px;
	background: linear-gradient(180deg, transparent, var(--bg));
}
.page-hero h1 {
	font-size: clamp(1.8rem, 4vw, 3rem);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	animation: fade-in-up 0.6s ease both;
}
.page-hero p {
	opacity: 0.92;
	font-size: 1.05rem;
	position: relative;
	z-index: 1;
	animation: fade-in-up 0.6s 0.1s ease both;
}

/* ── Admin layout ────────────────────────────────────────────────────── */
.admin-body {
	background: #f1f5f9;
}
.admin-layout {
	display: flex;
	min-height: 100vh;
}
.admin-sidebar {
	width: 260px;
	background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 100%);
	color: #fff;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	padding: 1.5rem 0;
}
.admin-brand {
	padding: 0 1.5rem 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	font-weight: 700;
}
.admin-nav {
	flex: 1;
}
.admin-nav a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.8rem 1.5rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	transition: var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-left: 3px solid var(--accent);
}
.admin-nav .material-icons {
	font-size: 1.2rem;
}
.admin-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.admin-topbar {
	background: #fff;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 10;
}
.admin-topbar h1 {
	font-size: 1.3rem;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
}
.admin-content {
	padding: 2rem;
	flex: 1;
	overflow-y: auto;
}

/* ── Stat cards (admin) ──────────────────────────────────────────────── */
.stat-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.stat-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 1px solid var(--border);
	transition: var(--transition);
}
.stat-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}
.stat-card .icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-card .icon .material-icons {
	font-size: 1.6rem;
	color: #fff;
}
.stat-card .value {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}
.stat-card .label {
	font-size: 0.83rem;
	color: var(--text-muted);
}
.icon-blue {
	background: linear-gradient(135deg, #0077b6, #00b4d8);
}
.icon-green {
	background: linear-gradient(135deg, #10b981, #34d399);
}
.icon-orange {
	background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.icon-red {
	background: linear-gradient(135deg, #ef4444, #f87171);
}
.icon-purple {
	background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* ── Admin table ─────────────────────────────────────────────────────── */
.table-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.table-card-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.table-card-header h2 {
	font-size: 1.1rem;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
}
.admin-table {
	width: 100%;
	border-collapse: collapse;
}
.admin-table th {
	padding: 0.75rem 1.25rem;
	text-align: left;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	background: var(--bg);
}
.admin-table td {
	padding: 0.85rem 1.25rem;
	border-bottom: 1px solid var(--border);
	font-size: 0.93rem;
}
.admin-table tr:last-child td {
	border-bottom: none;
}
.admin-table tr:hover td {
	background: #f8fafc;
}
.admin-form-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 2rem;
	max-width: 720px;
}

/* ── Status badges ───────────────────────────────────────────────────── */
.badge {
	display: inline-block;
	padding: 0.25rem 0.7rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
}
.badge-pending {
	background: #fef3c7;
	color: #92400e;
}
.badge-confirmed {
	background: #d1fae5;
	color: #065f46;
}
.badge-cancelled {
	background: #fee2e2;
	color: #991b1b;
}
.badge-unread {
	background: #dbeafe;
	color: #1e40af;
}
.badge-read {
	background: var(--bg);
	color: var(--text-muted);
}

/* ── Login page ──────────────────────────────────────────────────────── */
.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0f172a, #1e3a5f);
}
.login-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 2.5rem;
	width: 100%;
	max-width: 420px;
	box-shadow: var(--shadow-lg);
}
.login-logo {
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}
.login-card h2 {
	text-align: center;
	margin-bottom: 1.75rem;
	font-size: 1.4rem;
}
.form-error {
	color: #ef4444;
	font-size: 0.88rem;
	margin-top: 0.25rem;
}

/* ── Map section ─────────────────────────────────────────────────────── */
.map-section {
	height: 400px;
	background: linear-gradient(135deg, #e0f2fe, #bae6fd);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.1rem;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
	background: radial-gradient(circle at top left, rgba(0, 180, 216, 0.12), transparent 22rem), linear-gradient(180deg, #0f172a, #07111f);
	color: rgba(255, 255, 255, 0.8);
	padding: 4rem 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 2.5rem;
	padding-bottom: 3rem;
}
.footer-brand {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}
.footer-col h4 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1rem;
}
.footer-col ul li {
	margin-bottom: 0.5rem;
}
.footer-col ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}
.footer-col ul li a:hover {
	color: var(--accent);
}
.footer-col p {
	font-size: 0.9rem;
	line-height: 1.7;
}
.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}
.contact-list .material-icons {
	font-size: 1.1rem;
	color: var(--accent);
	margin-top: 0.1rem;
	flex-shrink: 0;
}
.contact-list a {
	color: rgba(255, 255, 255, 0.8);
}
.contact-list a:hover {
	color: var(--accent);
}
.badge-award {
	display: inline-block;
	background: rgba(72, 202, 228, 0.15);
	border: 1px solid rgba(72, 202, 228, 0.3);
	color: var(--accent);
	padding: 0.35rem 0.9rem;
	border-radius: 50px;
	font-size: 0.82rem;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.admin-link {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.78rem;
}
.admin-link:hover {
	color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}
	.section {
		padding: 3.5rem 0;
	}
	.hero {
		min-height: auto;
		padding: 7.5rem 1rem 3.5rem;
	}
	.hero p {
		margin-bottom: 1.75rem;
	}
	.hero-actions .btn {
		width: 100%;
		justify-content: center;
	}
	.nav-links {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		width: min(80vw, 300px);
		height: 100vh;
		background: #fff;
		box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18);
		padding: 5rem 1.25rem 2rem;
		gap: 0.25rem;
		z-index: 999;
		transform: translateX(110%);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
	}
	.nav-links.open {
		transform: translateX(0);
	}
	.nav-links li .nav-link {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.85rem 1rem;
		border-radius: var(--radius-sm);
		font-size: 1rem;
		color: var(--text);
		border-bottom: 1px solid var(--border);
	}
	.nav-links li:last-child .nav-link,
	.nav-links li:last-child .btn {
		border-bottom: none;
	}
	.nav-links li .nav-link::after {
		display: none;
	}
	.nav-links li .btn.nav-btn {
		width: 100%;
		justify-content: center;
		margin-top: 0.75rem;
	}
	/* Overlay behind drawer */
	.nav-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.45);
		z-index: 998;
		backdrop-filter: blur(2px);
	}
	.nav-overlay.open {
		display: block;
	}
	/* Burger → X animation */
	.burger {
		display: block;
	}
	.burger .material-icons {
		transition: transform 0.3s ease;
	}
	.burger.open .material-icons {
		transform: rotate(90deg);
	}
	.contact-grid,
	.reservation-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.admin-layout {
		flex-direction: column;
	}
	.admin-sidebar {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
		padding: 0.5rem 0;
	}
	.admin-sidebar .admin-brand {
		display: none;
	}
	.admin-nav {
		display: flex;
		flex-direction: row;
	}
	.admin-nav a {
		flex-direction: column;
		font-size: 0.72rem;
		padding: 0.5rem 0.75rem;
		gap: 0.2rem;
	}
	.admin-nav a span:first-child {
		font-size: 0.9rem;
	}
	.hero-stats {
		gap: 0.75rem;
		margin-top: 2.5rem;
	}
	.hero-stat {
		flex: 1 1 calc(50% - 0.75rem);
		min-width: 130px;
		padding: 0.9rem 0.75rem;
	}
	.hero-stat .number {
		font-size: 2rem;
	}
	.card-body,
	.form-card {
		padding: 1.25rem;
	}
	.page-hero {
		padding: 7rem 1rem 3.2rem;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.btn:not(.btn-sm) {
		width: 100%;
		justify-content: center;
	}
	.hero-stat {
		flex-basis: 100%;
	}
	.grid-3,
	.grid-2 {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	.card-img {
		height: 190px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
