:root {
    /* Color Palette - Updated per user request (60-30-10 Rule) */

    /* 60% - Base (Creamy off-white & Light Brown) */
    --background-color: #FCF8F1;
    --secondary-color: #8B5E3C;
    /* Light Brown */

    /* 30% - Secondary (Ochre) */
    --accent-color: #CA955C;
    /* Ochre */

    /* 10% - Accents (Yellow & Orange) */
    --primary-color: #FF8400;
    /* Orange */
    --primary-light: #FFD93D;
    /* Yellow */

    /* Contrast / "Bite" (Deep Charcoal/Navy) */
    --text-color: #1F2937;
    /* Deep Charcoal Gray */
    --text-muted: #4B5563;
    --contrast-color: #111827;
    /* Very deep charcoal */

    --white: #FFFFFF;
    --glass-bg: rgba(252, 248, 241, 0.9);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(139, 94, 60, 0.1);
    --shadow-lg: 0 10px 30px rgba(139, 94, 60, 0.15);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--secondary-color);
    /* Light Brown for readability and 60% rule */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}


/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    /* Increased from 80px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}


.btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(255, 132, 0, 0.39);
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.23);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2100;
}

.close-lightbox:hover {
    color: var(--primary-light);
}

.lightbox-nav {
    position: absolute;
    width: 110%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.lightbox-nav button:hover {
    background: var(--primary-color);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 100%;
        bottom: -80px;
        justify-content: center;
        gap: 40px;
    }
}

.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

#hero h1 {
    color: var(--white) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

/* Review Glassmorphism */
.review-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 40px;
    max-width: 550px;
    margin: 30px auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.review-glass .quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
}

.review-glass .author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    /* Yellow accent */
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Specs Bar */
.specs-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(139, 94, 60, 0.1);
    position: relative;
    z-index: 10;
}

.specs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

.spec-item svg {
    color: var(--primary-color);
    opacity: 0.8;
}

.spec-divider {
    width: 1px;
    height: 24px;
    background: rgba(139, 94, 60, 0.2);
}

@media (max-width: 768px) {
    .specs-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .spec-divider {
        display: none;
    }

    .spec-item {
        width: calc(50% - 10px);
        justify-content: center;
    }
}

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

.gallery-item {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    cursor: pointer;
}

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

/* Booking Section */
#booking {
    background: var(--accent-color);
    color: var(--background-color);
    margin: 100px 0;
    /* Spacing between sections */
    padding: 100px 20px;
}

#booking h2 {
    color: var(--background-color) !important;
}

#booking p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.amenity-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.3s ease;
    border: 1px solid rgba(202, 149, 92, 0.1);
    /* Subtle Ochre border */
}


.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
}

.amenity-icon svg {
    color: var(--primary-color);
}

/* Footer Section */
footer {
    padding: 80px 0;
    background: var(--contrast-color);
    color: var(--white);
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
}

footer .logo img {
    filter: brightness(0) invert(1);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
}