:root {
	--bg: #fff6ee;
	--bg-accent: #f2f6ee;
	--surface: #fffefd;
	--warm: #c45a28;
	--warm-deep: #8f3a14;
	--sunset: #f3c892;
	--leaf: #4f6d46;
	--leaf-soft: #a5b48f;
	--earth: #2f241b;
	--text: #332016;
	--muted: #6c5648;
	--shadow: 0 25px 50px rgba(28, 9, 0, 0.12);
	--radius-xl: 40px;
	--radius-lg: 24px;
	--radius-md: 14px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
	color: var(--text);
	background-image: radial-gradient(
			circle at 20% 20%,
			rgba(248, 192, 143, 0.25),
			transparent 55%
		),
		radial-gradient(
			circle at 80% 0%,
			rgba(164, 188, 146, 0.35),
			transparent 45%
		),
		linear-gradient(180deg, #fffaf3, #f1f7ef 65%, #fff8f0);
	background-attachment: fixed;
	line-height: 1.6;
	min-height: 100vh;
}

img {
	max-width: 100%;
	display: block;
	border-radius: var(--radius-md);
}

a {
	color: inherit;
	text-decoration: none;
}

main {
	width: 100%;
	padding-bottom: 4rem;
	position: relative;
	isolation: isolate;
}

.section {
	width: min(1200px, 94%);
	margin: 0 auto 4rem;
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: clamp(2.5rem, 6vw, 4rem);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.section::before {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	top: -90px;
	right: -60px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(248, 199, 156, 0.35) 0%,
		transparent 65%
	);
	pointer-events: none;
}

.section:nth-of-type(even) {
	background: linear-gradient(135deg, #fffaf3, #fffdf8 55%, #fff6ed);
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--warm);
	background: rgba(196, 90, 40, 0.12);
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	flex-wrap: wrap;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.3rem, 4vw, 3.8rem);
}

h2 {
	font-size: clamp(2rem, 3.3vw, 3rem);
}

h3 {
	font-size: 1.45rem;
}

p {
	margin: 0 0 1.25rem;
	color: var(--muted);
}

.section .highlight {
	font-family: "Noto Serif Bengali", "Poppins", serif;
	font-size: 1.2rem;
	color: var(--leaf);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
	background: linear-gradient(135deg, var(--warm), #d86a41);
	color: #fff;
	box-shadow: 0 12px 30px rgba(196, 90, 40, 0.35);
}

.btn.ghost {
	border: 1px solid rgba(51, 32, 22, 0.2);
	background: rgba(255, 255, 255, 0.7);
	color: var(--text);
}

.btn.whatsapp {
	background: var(--leaf);
	color: #fff;
}

.btn:hover {
	transform: translateY(-2px);
}

/* Header */
.site-header {
	position: sticky;
	top: 1rem;
	width: min(1200px, 94%);
	margin: 1rem auto;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	z-index: 50;
	backdrop-filter: blur(12px);
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.brand-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 600;
	color: var(--text);
}
.brand-mark {
	font-family: "Noto Serif Bengali", serif;
	font-size: 1.9rem;
	background: var(--sunset);
	color: var(--earth);
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	display: grid;
	place-items: center;
}

.brand-sub {
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.utility-controls {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.language-toggle {
	display: inline-flex;
	padding: 0.2rem;
	border-radius: 999px;
	background: rgba(51, 32, 22, 0.08);
}

.lang-btn {
	border: none;
	background: transparent;
	color: var(--text);
	font-weight: 600;
	padding: 0.35rem 0.95rem;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.82rem;
}

.lang-btn.active {
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.main-nav {
	position: relative;
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.main-nav a {
	font-weight: 500;
	color: var(--text);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 0.3rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.4rem;
}

.nav-toggle span {
	width: 26px;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
}

.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 20;
}

body.nav-open {
	overflow: hidden;
}

body.nav-open .nav-backdrop {
	opacity: 1;
	pointer-events: auto;
}

/* ------------------------------
   MOBILE HEADER FIX (Screens < 700px)
------------------------------ */
@media (max-width: 700px) {
	.site-header {
		flex-direction: column; /* stack everything */
		text-align: center;
		padding: 1rem;
		gap: 0.75rem;
		border-radius: 24px; /* softer edges on mobile */
		width: 92%;
		top: 0.75rem; /* slightly closer to top */
	}

	.brand {
		flex-direction: column; /* logo + text stacked */
		gap: 0.4rem;
	}

	.brand-mark {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 2.2rem;
		border-radius: 16px;
	}

	.brand-title {
		font-size: 1.6rem;
	}

	.brand-sub {
		font-size: 0.78rem;
	}

	.utility-controls {
		width: 100%;
		justify-content: center; /* language toggle centered */
	}
}

/* Hero */
.hero {
	width: min(1200px, 94%);
	margin: 0 auto 4rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1.5rem, 4vw, 3.5rem);
	padding: clamp(2.5rem, 6vw, 4rem);
	background: linear-gradient(
		140deg,
		rgba(255, 255, 255, 0.9),
		rgba(255, 239, 229, 0.95)
	);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	background: radial-gradient(
		circle,
		rgba(255, 204, 161, 0.4) 0%,
		transparent 70%
	);
	bottom: -150px;
	left: -100px;
	pointer-events: none;
}

.hero-slider {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 380px;
	box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
	flex: 0 0 100%;
	background-size: cover;
	background-position: center;
	border-radius: var(--radius-lg);
	transform: scale(1.08);
	filter: saturate(0.9);
	transition: transform 0.9s ease, filter 0.9s ease;
}

.hero-slide.active {
	transform: scale(1);
	filter: saturate(1.05);
}

.hero-slider-nav {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.active {
	width: 28px;
	background: #fff;
}

.hero-slider-actions {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.75rem;
	pointer-events: none;
}

.hero-arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.85);
	color: var(--earth);
	font-size: 1.4rem;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	pointer-events: auto;
	transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover {
	transform: translateY(-2px);
	background: #fff;
}

.hero-arrow.prev {
	margin-right: auto;
}

.hero-arrow.next {
	margin-left: auto;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.hero .eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--warm);
	font-size: 0.85rem;
}

.hero .subline {
	font-size: 1.05rem;
	margin: 0;
}

.hero .subline.alt {
	color: var(--leaf);
	font-weight: 500;
}

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hero-chips span {
	padding: 0.35rem 0.95rem;
	border-radius: 999px;
	border: 1px solid rgba(51, 32, 22, 0.15);
	background: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	color: var(--earth);
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

/* Cottages */
.cottages-grid,
.facility-grid,
.explore-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.cottage-card {
	background: linear-gradient(
		135deg,
		rgba(255, 245, 238, 0.9),
		rgba(255, 255, 255, 0.95)
	);
	border-radius: var(--radius-lg);
	position: relative;
	border: 1px solid rgba(50, 20, 8, 0.08);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.cottage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.card-body {
	padding: 1.3rem;
}

.room-note {
	max-width: 320px;
	font-weight: 500;
	color: var(--warm);
}

.room-tour {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}

.room-tour::-webkit-scrollbar {
	height: 6px;
}

.room-tour::-webkit-scrollbar-thumb {
	background: rgba(51, 32, 22, 0.25);
	border-radius: 999px;
}

.room-card {
	min-width: 230px;
	border-radius: var(--radius-lg);
	background: #fff;
	border: 1px solid rgba(51, 32, 22, 0.08);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	padding: 1rem;
	scroll-snap-align: start;
}

.room-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.room-card figcaption {
	margin: 0.85rem 0 0;
	font-weight: 600;
	color: var(--earth);
}

.inline-link {
	color: var(--warm);
	font-weight: 600;
}

/* Facilities */
.facility-grid article,
.explore-grid article {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	border: 1px solid rgba(47, 24, 14, 0.08);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(196, 90, 40, 0.12);
	display: grid;
	place-items: center;
	font-size: 1.4rem;
	margin-bottom: 0.8rem;
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.gallery-item {
	border: none;
	padding: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: none;
	cursor: zoom-in;
	position: relative;
	display: flex;
	flex-direction: column;
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s ease;
	border-radius: 0;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-caption {
	display: block;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--earth);
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	border-top: 1px solid rgba(51, 32, 22, 0.08);
}

.gallery-item.featured {
	border: 2px solid var(--warm);
	box-shadow: 0 8px 24px rgba(196, 90, 40, 0.2);
}

.gallery-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: var(--warm);
	color: #fff;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 60;
	overflow-y: auto;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: min(1200px, 95vw);
	width: 100%;
	margin: auto;
}

.lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	width: auto;
	height: auto;
	border-radius: var(--radius-md);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	margin-bottom: 1rem;
}

.lightbox-caption {
	color: #fff;
	font-size: 1rem;
	text-align: center;
	padding: 0.75rem 1.5rem;
	background: rgba(0, 0, 0, 0.6);
	border-radius: var(--radius-md);
	max-width: 800px;
	margin: 0 auto;
}

.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: #fff;
	border: none;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	font-size: 1.4rem;
	cursor: pointer;
}

/* Location & Contact */
.location-content,
.contact-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	align-items: center;
}

.map-wrapper iframe {
	border: none;
	width: 100%;
	min-height: 320px;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-card {
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 236, 215, 0.95)
	);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 1px solid rgba(196, 90, 40, 0.08);
	pointer-events: none;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.contact-list li {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.contact-list span {
	width: 70px;
	color: var(--muted);
}

.contact-note ul {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--muted);
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-footer {
	text-align: center;
	padding: 2rem 1rem 3rem;
	color: #fff;
	background: var(--earth);
}

/* Animations */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
	.site-header {
		flex-wrap: wrap;
	}
}

@media (max-width: 900px) {
	.utility-controls {
		width: 100%;
		justify-content: flex-end;
	}

	.main-nav ul {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: min(320px, 80vw);
		background: var(--earth);
		flex-direction: column;
		padding: 5rem 2rem 2rem;
		gap: 1.5rem;
		transform: translateX(110%);
		transition: transform 0.3s ease;
		box-shadow: -30px 0 60px rgba(0, 0, 0, 0.35);
		z-index: 40;
	}

	.main-nav ul.open {
		transform: translateX(0);
	}

	.main-nav a {
		color: #fff;
		font-size: 1.1rem;
	}

	.nav-toggle {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.section,
	.hero,
	.site-header {
		width: 92%;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hero-chips span {
		font-size: 0.8rem;
	}

	.section-heading {
		flex-direction: column;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 0.75rem;
	}

	.gallery-item img {
		height: 160px;
	}

	.gallery-caption {
		font-size: 0.8rem;
		padding: 0.5rem;
	}

	.gallery-badge {
		font-size: 0.7rem;
		padding: 0.25rem 0.6rem;
		top: 0.5rem;
		right: 0.5rem;
	}

	.lightbox {
		padding: 0.5rem;
	}

	.lightbox img {
		max-height: calc(100vh - 100px);
	}

	.lightbox-caption {
		font-size: 0.9rem;
		padding: 0.6rem 1rem;
	}

	.lightbox-close {
		top: 1rem;
		right: 1rem;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.2rem;
	}

	.room-tour {
		gap: 0.75rem;
	}

	.room-card {
		min-width: 200px;
	}

	.room-card img {
		height: 160px;
	}
}
