/* ============================================
   GLOBAL STYLES & CSS VARIABLES
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--primary: #f5f3f0; /* Cream/Light neutral for backgrounds */
	--secondary: #193c40; /* Deep Teal - main brand color */
	--accent: #d96941; /* Terracotta - call-to-action */
	--dark: #214001; /* Deep Forest Green - text/footer */
	--medium-green: #2e5902; /* Rich Green - sections */
	--accent-dark: #a62b1f; /* Deep Terracotta - hover states */
	--light-bg: #e8e4df; /* Light background */

	/* Typography */
	--font-heading: "Playfair Display", serif;
	--font-body: "Lato", sans-serif;

	/* Font Weights */
	--weight-light: 300;
	--weight-regular: 400;
	--weight-semibold: 600;
	--weight-bold: 700;

	/* Font Sizes */
	--text-xs: 0.875rem;
	--text-sm: 1rem;
	--text-base: 1.125rem;
	--text-lg: 1.5rem;
	--text-xl: 2rem;
	--text-2xl: 2.5rem;
	--text-3xl: 3rem;
	--text-4xl: 4rem;

	/* Letter Spacing */
	--spacing-tight: 0.3px;
	--spacing-normal: 1px;
	--spacing-wide: 2px;
	--spacing-wider: 3px;

	/* Line Heights */
	--leading-normal: 1.6;
	--leading-relaxed: 1.8;

	/* Glassmorphism Effects */
	--glass-bg: rgba(245, 243, 240, 0.7);
	--glass-blur: 10px;
	--glass-border: rgba(255, 255, 255, 0.3);
}
html {
	overflow-x: hidden;
	overflow-y: auto; /* Allow vertical scrolling */
	height: auto;
	min-height: 100%;
	scroll-padding-top: 70px; /* Offset for fixed nav */
}
body {
	display: block;
	position: relative;
	font-family: var(--font-body);
	line-height: var(--leading-relaxed);
	color: var(--dark);
	background-color: var(--primary);
	letter-spacing: var(--spacing-tight);
	font-weight: var(--weight-regular);
	overflow-x: hidden;
	overflow-y: auto; /* Allow vertical scrolling */
	height: auto;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto !important;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: var(--glass-bg);
	backdrop-filter: blur(var(--glass-blur));
	border-bottom: 1px solid var(--glass-border);
	padding: 1rem 130px; /* reserve space on right for language toggle */
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
	margin: 0;
	padding: 0;
}

nav a {
	text-decoration: none;
	color: var(--secondary);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	letter-spacing: var(--spacing-wide);
	transition: color 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

nav a:hover {
	color: var(--accent);
}

nav a:hover::after {
	width: 100%;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.25rem;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    font-family: var(--font-body);
    cursor: pointer;
    padding: 0.4rem 0.9rem;
    transition: all 0.3s ease;
    border-radius: 20px;
    min-width: 45px;
}

.lang-btn:hover {
    color: var(--primary);
    background: rgba(217, 105, 65, 0.3);
}

.lang-btn.active {
    color: var(--primary);
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(217, 105, 65, 0.3);
}

.lang-separator {
    display: none;  /* Hide the separator */
}

/* Mobile */
@media (max-width: 768px) {
    .language-toggle {
        position: fixed;
        top: 2rem;
        right: 1rem;
        z-index: 9999;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--glass-blur));
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .lang-btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
        min-width: 40px;
    }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 45px;
        height: 45px;
        background: var(--secondary) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        cursor: pointer;
        padding: 8px !important;
        position: fixed !important;
        top: 1rem !important;
        left: 1rem !important;
        z-index: 9999 !important;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--primary);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .menu-toggle:hover {
        background: var(--accent) !important;
        border-color: transparent !important;
    }

    .menu-toggle:hover span {
        background: var(--primary);
    }

    /* Transform to X when active */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	height: 100vh;
	width: 100%;
	max-width: 100%;
	min-height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--primary);
	text-align: center;
	padding: 2rem;
	margin: 0;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	clip-path: inset(0);
	background: var(--secondary);
}

/* Warm blob — terracotta & deep red */
.hero::before {
	content: '';
	position: absolute;
	width: 90%;
	height: 90%;
	top: calc(-25% + var(--blob-a-y, 0px));
	left: calc(-25% + var(--blob-a-x, 0px));
	background:
		radial-gradient(ellipse 60% 55% at 35% 40%, #d96941 0%, transparent 70%),
		radial-gradient(ellipse 50% 60% at 70% 65%, #a62b1f 0%, transparent 65%);
	filter: blur(70px);
	animation: blob-a 22s ease-in-out infinite alternate;
	transform-origin: 75% 70%;
	z-index: 0;
	opacity: 0.85;
}

/* Cool blob — forest green & teal */
.hero::after {
	content: '';
	position: absolute;
	width: 90%;
	height: 90%;
	bottom: calc(-25% + var(--blob-b-y, 0px));
	right: calc(-25% + var(--blob-b-x, 0px));
	background:
		radial-gradient(ellipse 65% 50% at 60% 55%, #2e5902 0%, transparent 70%),
		radial-gradient(ellipse 55% 65% at 25% 35%, #193c40 0%, transparent 65%);
	filter: blur(90px);
	animation: blob-b 28s ease-in-out infinite alternate;
	transform-origin: 25% 30%;
	z-index: 0;
	opacity: 0.9;
}

@keyframes blob-a {
	0%   { transform: rotate(0deg)   scale(1);    }
	33%  { transform: rotate(120deg) scale(1.15); }
	66%  { transform: rotate(240deg) scale(0.95); }
	100% { transform: rotate(360deg) scale(1.1);  }
}

@keyframes blob-b {
	0%   { transform: rotate(0deg)    scale(1.1);  }
	33%  { transform: rotate(-130deg) scale(0.95); }
	66%  { transform: rotate(-250deg) scale(1.2);  }
	100% { transform: rotate(-360deg) scale(1);    }
}

.hero-content {
	position: relative;
	z-index: 1;
	will-change: transform, opacity;
	transition: opacity 0.1s ease-out;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	font-weight: 300;
	letter-spacing: 2px;
}

.hero p {
	font-size: 1.35rem;
	margin-bottom: 2rem;
	font-style: italic;
	font-weight: var(--weight-light);
	letter-spacing: var(--spacing-wider);
	opacity: 0.9;
}


.cta-button {
	background-color: var(--primary);
	color: var(--accent);
	padding: 1rem 2.5rem;
	text-decoration: none;
	border-radius: 30px;
	font-size: var(--text-base);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	font-weight: var(--weight-semibold);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	background-color: var(--light-bg);
}

/* Hero SVG Animation */
@-webkit-keyframes svg-text-anim {
	40% {
		stroke-dashoffset: 0;
		fill: transparent;
	}
	60% {
		stroke-dashoffset: 0;
		fill: var(--primary);
	}
	100% {
		stroke-dashoffset: 0;
		fill: var(--primary);
	}
}

@keyframes svg-text-anim {
	40% {
		stroke-dashoffset: 0;
		fill: transparent;
	}
	60% {
		stroke-dashoffset: 0;
		fill: var(--primary);
	}
	100% {
		stroke-dashoffset: 0;
		fill: var(--primary);
	}
}

#logo-svg {
	width: 100%;
	max-width: 800px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY & BASE STYLES
   ============================================ */

section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	font-weight: var(--weight-semibold);
	letter-spacing: var(--spacing-normal);
}

h2 {
	font-size: var(--text-3xl);
	color: var(--secondary);
	margin-bottom: 2.5rem;
	text-align: center;
	font-weight: var(--weight-semibold);
	letter-spacing: var(--spacing-wide);
	position: relative;
	padding-bottom: 1rem;
}

h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--accent);
	border-radius: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in-section {
	opacity: 0;
	transform: translateY(50px);
	transition:
		opacity 1s ease-out,
		transform 1s ease-out;
}

.fade-in-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Remove overflow restrictions that hide footer */
.fade-in-section,
.fade-in-section.is-visible,
section {
	overflow: visible !important;
}

.booking,
.contact {
	overflow: visible !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		backdrop-filter: blur(0px);
	}
	to {
		opacity: 1;
		backdrop-filter: blur(20px);
	}
}

@keyframes zoomIn {
	from {
		transform: scale(0.7);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* ============================================
   PORTFOLIO GALLERY
   ============================================ */

#portfolio {
	width: 100%;
	max-width: 100%;
	padding: 5rem 2rem;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
	max-width: 1400px; /* Wider max-width for gallery */
	margin-left: auto;
	margin-right: auto;
}

.gallery-item {
	background-color: var(--light-bg);
	height: 300px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary);
	font-size: var(--text-base);
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.gallery-item.animate {
	opacity: 1;
	transform: scale(1);
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.gallery-item:hover::after {
	content: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--primary);
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 5px;
	font-size: var(--text-sm);
	pointer-events: none;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
	background-color: var(--secondary);
	color: var(--primary);
	border-radius: 15px;
	padding: 3rem;
}

.about h2 {
	color: var(--primary);
}

.about p {
	font-size: var(--text-base);
	line-height: 1.9;
	text-align: left;
	max-width: 720px;
	margin: 0 auto 1.5rem auto;
	color: rgba(245, 243, 240, 0.92);
}

.about p:last-child {
	margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
	background-color: var(--light-bg);
	border-radius: 15px;
	padding: 5rem 3rem;
}

.testimonials h2 {
	color: var(--secondary);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background-color: var(--primary);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
	color: #ffb800;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	font-size: var(--text-base);
	line-height: 1.85;
	color: #2a2a2a;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.testimonial-author strong {
	color: var(--secondary);
	font-size: var(--text-base);
	font-weight: var(--weight-semibold);
}

.testimonial-author span {
	color: var(--accent);
	font-size: var(--text-sm);
}

/* Mobile */
@media (max-width: 768px) {
	.testimonials {
		padding: 3rem 1.5rem;
		margin: 0 1rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
	background-color: var(--primary);
}

.pricing h2 {
	color: var(--secondary);
}

.pricing-intro {
	text-align: center;
	font-size: var(--text-lg);
	color: var(--dark);
	margin-bottom: 3rem;
	font-style: italic;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {
	background-color: var(--light-bg);
	padding: 2.5rem 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	position: relative;
}

.pricing-card.featured {
	border: 3px solid var(--accent);
	transform: scale(1.05);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--accent);
	color: var(--primary);
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
}

.pricing-card h3 {
	font-size: var(--text-xl);
	color: var(--secondary);
	margin-bottom: 1rem;
	text-align: center;
}

.pricing-amount {
	font-size: var(--text-3xl);
	color: var(--accent);
	font-weight: var(--weight-bold);
	text-align: center;
	margin-bottom: 2rem;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.7rem 0;
	color: var(--dark);
	font-size: var(--text-sm);
	line-height: 1.5;
	border-bottom: 1px solid rgba(25, 60, 64, 0.1);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-button {
	display: block;
	background-color: var(--accent);
	color: var(--primary);
	padding: 1rem 2rem;
	text-align: center;
	border-radius: 30px;
	text-decoration: none;
	font-weight: var(--weight-semibold);
	transition: all 0.3s ease;
}

.pricing-button:hover {
	background-color: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(217, 105, 65, 0.3);
}

.pricing-note {
	text-align: center;
	margin-top: 3rem;
	font-size: var(--text-base);
	color: var(--dark);
	font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card.featured {
		transform: scale(1);
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

.pricing-addons {
	margin-top: 4rem;
	padding: 2rem;
	background-color: var(--light-bg);
	border-radius: 15px;
}

.pricing-addons h3 {
	font-size: var(--text-xl);
	color: var(--secondary);
	margin-bottom: 1.5rem;
	text-align: center;
}

.addons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.addon-item {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	background-color: var(--primary);
	border-radius: 8px;
	border-left: 4px solid var(--accent);
}

.addon-item strong {
	color: var(--secondary);
	font-size: var(--text-base);
	margin-bottom: 0.5rem;
}

.addon-item span {
	color: var(--accent);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
}

@media (max-width: 768px) {
	.addons-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
	background-color: var(--primary);
}

.faq h2 {
	color: var(--secondary);
}

.faq-intro {
	text-align: center;
	font-size: var(--text-lg);
	color: var(--dark);
	margin-bottom: 3rem;
	font-style: italic;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--light-bg);
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem 2rem;
	text-align: left;
	font-size: var(--text-base);
	font-weight: var(--weight-semibold);
	color: var(--secondary);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	font-family: var(--font-heading);
}

.faq-question:hover {
	color: var(--accent);
}

.faq-icon {
	font-size: 1.5rem;
	color: var(--accent);
	font-weight: var(--weight-light);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
	padding: 0 2rem;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	color: var(--dark);
	margin: 0;
}

.faq-footer {
	text-align: center;
	margin-top: 3rem;
	font-size: var(--text-lg);
	color: var(--dark);
}

.faq-footer a {
	color: var(--accent);
	text-decoration: none;
	font-weight: var(--weight-semibold);
	transition: color 0.3s ease;
}

.faq-footer a:hover {
	color: var(--accent-dark);
	text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: var(--text-sm);
	}

	.faq-answer {
		padding: 0 1.5rem;
	}

	.faq-item.active .faq-answer {
		padding: 0 1.5rem 1.25rem 1.5rem;
	}
}
/* ============================================
   BOOKING SECTION
   ============================================ */

.booking {
	background-color: var(--primary);
}

.booking-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.booking-form {
	background-color: var(--light-bg);
	padding: 2rem;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--secondary);
	font-weight: var(--weight-semibold);
}

input,
textarea,
select {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid var(--accent);
	border-radius: 5px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	background-color: var(--primary);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

button[type="submit"] {
	background-color: var(--accent);
	color: var(--primary);
	padding: 1rem 2rem;
	border: none;
	border-radius: 30px;
	font-size: var(--text-base);
	cursor: pointer;
	transition: background-color 0.3s;
	font-weight: var(--weight-semibold);
	width: 100%;
}

button[type="submit"]:hover {
	background-color: var(--accent-dark);
}

.calendar-section {
	background-color: var(--light-bg);
	padding: 2rem;
	border-radius: 10px;
}

.calendar-section h3 {
	color: var(--secondary);
	margin-bottom: 1rem;
	text-align: center;
}

.availability-note {
	background-color: var(--medium-green);
	color: var(--primary);
	padding: 1rem;
	border-radius: 5px;
	margin-top: 1rem;
	text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
	background-color: var(--accent);
	color: var(--primary);
	text-align: center;
	border-radius: 15px;
	padding: 4rem 3rem;
}

.contact h2 {
	color: var(--primary);
	font-size: var(--text-4xl);
	margin-bottom: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-item {
	font-size: var(--text-lg);
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	text-align: left;
}

.contact-icon {
	font-size: 1.4rem;
	line-height: 1.6;
	flex-shrink: 0;
}
.contact-item a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}
.contact-item a:hover {
	opacity: 0.8;
}
/* ============================================
   FOOTER
   ============================================ */

/* Ensure footer is always visible */
footer {
	background-color: var(--dark);
	color: var(--primary);
	text-align: center;
	padding: 3rem 2rem;
	width: 100%;
	position: relative;
	clear: both;
	display: block !important;
	visibility: visible !important;
	z-index: 10;
}

/* Social Media Links */
.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: var(--accent);
	transform: translateY(-3px);
}

.social-links svg {
	width: 24px;
	height: 24px;
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background-color: var(--accent);
	color: var(--primary);
	border: none;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--accent-dark);
	transform: translateY(-3px);
}

.back-to-top:active {
	transform: translateY(-1px);
}

/* ============================================
   LIGHTBOX (MODAL IMAGE VIEWER)
   ============================================ */

.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(20px);
	animation: fadeIn 0.4s ease;
}

.lightbox-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 40px;
	right: 60px;
	color: var(--primary);
	font-size: 45px;
	font-weight: var(--weight-light);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.4);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.lightbox-close:hover {
	background: var(--accent);
	transform: rotate(90deg);
	color: white;
}

.lightbox-prev,
.lightbox-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	padding: 0;
	color: var(--primary);
	font-weight: var(--weight-bold);
	font-size: 30px;
	transition: all 0.3s ease;
	user-select: none;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background: var(--accent);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 5px 20px rgba(217, 105, 65, 0.4);
}

.lightbox-prev {
	left: 40px;
}

.lightbox-next {
	right: 40px;
}

.lightbox-caption {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	max-width: 700px;
	text-align: center;
	color: var(--primary);
	padding: 12px 30px;
	font-size: var(--text-base);
	font-family: var(--font-heading);
	letter-spacing: var(--spacing-normal);
	background: rgba(0, 0, 0, 0.6);
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.lightbox-counter {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--primary);
	font-size: var(--text-xs);
	background: rgba(0, 0, 0, 0.6);
	padding: 6px 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

/* ============================================
   RESPONSIVE DESIGN (MOBILE)
   ============================================ */

@media (max-width: 768px) {
	html,
	body {
		height: auto !important;
		min-height: 100% !important;
		overflow-y: scroll !important;
		-webkit-overflow-scrolling: touch;
	}
	/* Remove any fixed positioning that might constrain scroll */
	body {
		position: static;
	}
	/* Logo SVG */
	#logo-svg {
		width: 95%;
		max-width: none;
		height: auto;
		margin: 0 auto;
		padding: 0 0.5rem;
	}

	/* Hero Section */

	.hero {
		height: 100vh;
		min-height: 100vh; /* Ensure it's at least full screen */
	}
	.hero h1 {
		font-size: var(--text-2xl);
		margin: 0 auto 1rem auto;
		max-width: 90%;
		font-weight: var(--weight-bold);
		letter-spacing: var(--spacing-normal);
	}

	.hero p {
		font-family: var(--font-body);
		font-size: var(--text-lg);
		margin-bottom: 2rem;
		font-style: italic;
		font-weight: var(--weight-light);
		letter-spacing: var(--spacing-normal);
	}

	/* Ensure all sections can scroll */
	section {
		position: relative;
	}

	/* Navigation - Mobile */
	nav {
		padding: 0;
		background: transparent !important;
		backdrop-filter: none !important;
		border-bottom: none !important;
		box-shadow: none !important;
	}

	nav ul {
		display: none; /* Hidden by default */
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100vw;
		background: var(--glass-bg);
		backdrop-filter: blur(var(--glass-blur));
		padding: 1rem 0;
		align-items: center;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
		animation: slideDown 0.3s ease;
	}

	nav ul.active {
		display: flex;
	}

	nav ul li {
		width: 100%;
		text-align: center;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(25, 60, 64, 0.1);
		transition: all 0.3s ease;
	}

	nav ul li:last-child {
		border-bottom: none;
	}
	nav ul li:hover {
		background-color: rgba(217, 105, 65, 0.1);
		transform: scale(1.02);
	}

	nav a {
		display: block;
		width: 100%;
		color: var(--secondary);
		font-size: var(--text-base);
		font-weight: var(--weight-regular);
		padding: 0.5rem 1rem;
	}
	/* Underline animation on hover */
	nav a::after {
		display: none;
	}

	nav a:hover::after {
		width: 100%;
	}

	nav a:hover {
		color: var(--accent);
		transform: translateY(-2px);
	}

	/* Active/Click state */
	nav a:active {
		transform: translateY(0);
	}

	/* Menu Toggle styles are defined in the outer @media (max-width: 768px) block above */
	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Gallery - Mobile */
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.gallery-item {
		height: 200px;
	}

	/* Booking - Mobile */
	.booking-container {
		grid-template-columns: 1fr;
	}

	/* Sections - Mobile */
	section {
		padding: 3rem 1rem;
	}

	.about {
		padding: 2.5rem 1.5rem;
		margin: 0 1rem;
	}

	.about h2 {
		font-size: var(--text-2xl); /* Smaller heading on mobile */
		margin-bottom: 1.5rem;
	}

	.about p {
		font-size: 1rem; /* Slightly smaller */
		line-height: 1.9; /* More breathing room */
		text-align: left; /* Left-align for easier reading on mobile */
		max-width: 100%;
		margin: 0 0 1.5rem 0;
		padding: 0;
	}

	.about p:last-child {
		margin-bottom: 0;
	}

	.about,
	.contact {
		border-radius: 20px;
		margin: 0 1rem;
	}

	.booking-form,
	.calendar-section {
		border-radius: 15px;
	}

	.contact {
		padding: 3rem 2rem;
		margin: 2rem 1rem;
		border-radius: 20px;
	}
	.contact h2 {
		font-size: var(--text-3xl);
		margin-bottom: 2.5rem;
	}
	.contact-item a {
		color: inherit;
		text-decoration: none;
		word-break: break-word;
	}

	.contact-info {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
		margin-top: 2rem;
	}

	.contact-item {
		font-size: 1.125rem;
		line-height: 1.6;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.75rem;
		width: 100%;
		text-align: left;
	}

	/* Lightbox mobile fixes */
	.lightbox-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90vw;
		max-width: 90vw;
		max-height: 70vh; /* More space for arrows */
		object-fit: contain;
	}

	/* Navigation arrows - larger and more visible on mobile */
	.lightbox-prev,
	.lightbox-next {
		width: 50px;
		height: 50px;
		font-size: 24px;
		background: rgba(217, 105, 65, 0.9); /* More visible */
		top: 50%;
		transform: translateY(-50%);
	}

	.lightbox-prev {
		left: 10px; /* Closer to edge */
	}

	.lightbox-next {
		right: 10px; /* Closer to edge */
	}

	/* Close button - easier to tap */
	.lightbox-close {
		top: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 35px;
		background: rgba(217, 105, 65, 0.9);
	}

	/* Counter - adjust position */
	.lightbox-counter {
		top: 20px;
		font-size: var(--text-sm);
		padding: 8px 16px;
	}

	/* Caption - better positioning */
	.lightbox-caption {
		bottom: 20px;
		max-width: 90%;
		font-size: var(--text-sm);
		padding: 10px 20px;
	}

	/* Ensure arrows are always visible */
	.lightbox-prev,
	.lightbox-next {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		z-index: 10001;
	}

	/* Add touch-friendly tap areas */
	.lightbox-prev:active,
	.lightbox-next:active,
	.lightbox-close:active {
		transform: scale(0.9);
	}

	/* Footer - Mobile */
	footer {
		padding: 2rem 1rem !important;
		font-size: var(--text-sm);
		margin-top: 2rem;
	}
}

/* Tablet / medium screens */
@media (min-width: 769px) and (max-width: 1100px) {
	nav {
		padding: 0.75rem 120px 0.75rem 1.5rem;
	}

	nav ul {
		gap: 1rem;
	}

	nav a {
		font-size: var(--text-xs);
		letter-spacing: var(--spacing-normal);
	}
}

/* Ensure desktop nav is always visible */
@media (min-width: 769px) {
	.menu-toggle {
		display: none !important;
	}

	nav ul {
		display: flex !important;
	}
}

.menu-toggle {
	display: none;
}
