/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    /* UPDATED LOGO PALETTE */
    --brand-yellow: #F0A830; /* Golden Yellow */
    --brand-black: #3A5F0B;  /* Forest Green */
    --text-grey: #3E2012;    /* Dark Chocolate */
    --light-grey: #F9F9F4;   /* Off-White/Cream */
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-grey);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVIGATION */
nav {
    background: var(--brand-black);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--white);
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-yellow);
    background-color: var(--brand-black);
}

/* HERO SECTIONS */
/* .hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 140px 20px;
} */

.cta-btn {
    background: var(--brand-yellow);
    color: var(--brand-black);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* COMMON LAYOUT */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 70px 20px;
}

.section-bg {
    background-color: var(--light-grey);
}

h2 {
    color: var(--brand-black);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

h3 {
    color: var(--brand-black);
    margin-bottom: 10px;
}

/* FAQ ACCORDION STYLES */
.accordion {
    background-color: white;
    color: var(--brand-black);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.4s;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active,
.accordion:hover {
    background-color: #FFF5D3; /* Light Cream hover */
}

.accordion:after {
    content: '\002B';
    /* Plus sign */
    font-size: 1.5rem;
    color: var(--text-grey);
    font-weight: bold;
}

.active:after {
    content: "\2212";
    /* Minus sign */
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid transparent;
}

.panel p {
    margin: 15px 0;
}

/* TESTIMONIAL CAROUSEL STYLES */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    border-top: 5px solid var(--brand-yellow);
}

.slide {
    display: none;
    animation: fade 1.5s;
}

.slide p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.slide h4 {
    color: var(--brand-black);
    font-weight: bold;
}

/* Carousel Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}

/* Dots */
.dot-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot,
.dot:hover {
    background-color: var(--brand-black);
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* RESPONSIVE
@media(max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
    }

    .hero {
        padding: 80px 20px;
    }
} */

/* --- BASE STYLES --- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-grey);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- NAVIGATION --- */
nav {
    background: var(--brand-black);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--white);
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-yellow);
}

/* --- HERO & HEADERS --- */
/* .hero {
    /* background:  url('images/banner.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* color: var(--white); */
    /* text-align: center; */
    /* padding: 200px 10px; */
*/

.page-header {
    background: var(--brand-black);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--brand-yellow);
}

.page-header p {
    opacity: 0.8;
    margin-top: 10px;
}

/* --- BUTTONS --- */
.cta-btn {
    background: var(--brand-yellow);
    color: var(--brand-black);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(240, 168, 48, 0.4);
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}

.section-bg {
    background-color: var(--light-grey);
}

h2 {
    color: var(--brand-black);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info-box h4 {
    color: var(--brand-black);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Contact Form Styling */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-black);
    outline: none;
}

.submit-btn {
    width: 100%;
    background: var(--brand-black);
    color: var(--brand-yellow);
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Map */
iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* --- ROOMS PAGE STYLES --- */
.room-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Booking Steps (01, 02, 03) */
.step-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.step-number {
    font-size: 5rem;
    color: #e0e0e0;
    font-weight: 700;
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.step-title {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-black);
}

/* --- HOME PAGE: FAQ ACCORDION --- */
.accordion {
    background-color: white;
    color: var(--brand-black);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.4s;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active,
.accordion:hover {
    background-color: #FFF5D3; /* Light Cream hover */
}

.accordion:after {
    content: '\002B';
    /* Plus sign */
    font-size: 1.5rem;
    color: var(--text-grey);
    font-weight: bold;
}

.active:after {
    content: "\2212";
    /* Minus sign */
}

.panel {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid transparent;
}

.panel p {
    margin: 20px 0;
    color: #666;
}

/* --- HOME PAGE: CAROUSEL --- */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    text-align: center;
    border-top: 6px solid var(--brand-yellow);
}

.slide {
    display: none;
    animation: fade 1.5s;
}

.slide p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}

.slide h4 {
    color: var(--brand-black);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Carousel Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #ccc;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--brand-black);
}

/* Dots */
.dot-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot,
.dot:hover {
    background-color: var(--brand-yellow);
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* --- FOOTER --- */
footer {
    background: var(--brand-black);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media(max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 20px;
    }

    .nav-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    /* .hero { */
        /* background-image: url(images/banner3.png); */
        /* padding: 120px 20px; */
        /* margin: 5px; */
        /* border-width: 10px; */
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .step-number {
        font-size: 3.5rem;
    }


/* --- NEW SECTIONS CSS (Paste at bottom of style.css) --- */

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.time-stamp {
    min-width: 100px;
    font-weight: bold;
    color: var(--brand-black);
    text-align: right;
}

.time-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-yellow);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.safety-box {
    background: #3A5F0B; /* Updated to Forest Green */
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.safety-box h4 {
    color: var(--brand-yellow);
    margin: 10px 0;
}

/* Community Section */
.community-box {
    background: white;
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
}

/* --- NEW ROOM BADGES (Add to bottom of style.css) --- */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.ac-badge {
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 5px;
}

.non-ac-badge {
    background-color: #ffebee;
    color: #c62828;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

/* --- TAB STYLES (Add to bottom of style.css) --- */
.tab-container {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 28px;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: bold;
    color: var(--brand-black);
    border-radius: 5px;
    margin: 0 5px;
}

/* Change background color of buttons on hover */
.tab-btn:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab-btn.active {
    background-color: var(--brand-black);
    color: var(--brand-yellow);
}

/* Style the tab content */
.tab-content {
    display: none;
    /* Hidden by default */
    animation: fadeEffect 1s;
    /* Fading effect */
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* --- NEW CONTENT STYLES (Add to bottom of style.css) --- */

/* Distances Table */
.distance-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.distance-table th,
.distance-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.distance-table th {
    background: var(--brand-black);
    color: var(--brand-yellow);
}

.distance-table tr:hover {
    background-color: #f9f9f9;
}

/* Manager Section */
.manager-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 8px solid var(--brand-yellow);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.manager-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #eee;
}

/* Documents Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.doc-card {
    background: #fff;
    padding: 20px;
    border: 1px dashed #aaa;
    border-radius: 8px;
}

/* Responsive adjustments for Manager section */
@media(max-width: 768px) {
    .manager-box {
        flex-direction: column;
        text-align: center;
    }
}


/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Mission Statement Box */
.mission-section {
    background-color: var(--brand-black);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--brand-yellow);
    padding: 40px;
    position: relative;
}

.mission-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.mission-author {
    color: var(--brand-yellow);
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Grid (Circle Icons) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--brand-yellow);
    color: var(--brand-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Stats Counter Strip */
.stats-strip {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--brand-black);
    margin: 0;
    line-height: 1;
}

.stat-item p {
    color: #666;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}


/* --- INFINITE GALLERY STYLES --- */
.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* Hides images outside the box */
}

.gallery-track {
    display: flex;
    width: 100%;
    /* Transition is handled by JS for the infinite effect */
}

.gallery-item {
    flex: 0 0 25%; /* 4 items visible (100% / 4 = 25%) */
    padding: 10px; /* Spacing between images */
    box-sizing: border-box;
}

.gallery-img {
    width: 100%;
    height: 300px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
}

.gallery-img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Navigation Buttons */
.gal-prev, .gal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}
.gal-prev:hover, .gal-next:hover { background-color: #F0A830; color: black; }
.gal-prev { left: 10px; }
.gal-next { right: 10px; }

/* Responsive: 2 images on tablet, 1 on phone */
@media(max-width: 768px) {
    .gallery-item { flex: 0 0 50%; }
    .gallery-img { height: 250px; }
}
@media(max-width: 480px) {
    .gallery-item { flex: 0 0 100%; }
}

/* --- LIGHTBOX (Full Size View) --- */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 100001; /* Highest priority */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Pitch black background */
    cursor: zoom-out; /* Shows user they can click to close */
}

.lightbox-content {
    margin: auto;
    display: block;
    
    /* LOGIC FOR ORIGINAL DIMENSIONS */
    width: auto;
    height: auto;
    max-width: 95%; /* Don't overflow width */
    max-height: 95vh; /* Don't overflow height */
    
    /* CENTERING */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    border: 2px solid white;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: translate(-50%, -50%) scale(0.8); opacity: 0;}
    to {transform: translate(-50%, -50%) scale(1); opacity: 1;}
}

/* Close Button (X) */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100002;
    background: none;
    border: none;
}
.lightbox-close:hover { color: var(--brand-yellow); }

/* --- HEADER CONTAINER --- */
/* This ensures the injected container fills the screen */
#main-header {
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    z-index: 1000;
}

/* --- FLEX NAVIGATION BAR --- */
nav {
    background: #3A5F0B; /* Updated to Forest Green */
    padding: 15px 20px;

    /* FLEXBOX MAGIC */
    display: flex;
    justify-content: space-between;
    /* Pushes Logo Left, Everything else Right */
    align-items: center;
    width: 100%;
    /* Forces nav to be full width */
    box-sizing: border-box;
    /* Ensures padding doesn't break width */

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* LOGO (Left Side) */
.logo {
    color: #F0A830; /* Updated to Golden Yellow */
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1002;
    /* Highest priority */
}

/* DESKTOP MENU (Right Side) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Space between links */
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F0A830;
}

/* --- MOBILE TOGGLE (Hidden on Desktop) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    /* Highest priority */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media(max-width: 768px) {

    #main-header {
        width: 100%;
        position: sticky;
        top: 0;

        /* FORCE HORIZONTAL ROW */
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        /* Pushes items to edges */
        align-items: center !important;

        overflow: visible !important;
    }

    /* 1. Show Toggle on the Right */
    .menu-toggle {
        display: flex;
    }

    /* 2. Hide Desktop Menu & Style as Dropdown */
    .nav-links {
        display: none;
        /* Hidden initially */

        position: absolute;
        top: 100%;
        /* Starts exactly below the nav bar */
        left: 0;
        width: 100%;
        /* Full width dropdown */

        background-color: #3A5F0B; /* Updated to Forest Green */
        flex-direction: column;
        /* Stack links vertically */
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid #333;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    /* 3. Show Menu when Active class is added */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.1rem;
        display: block;
    }

    /* 4. Hamburger Animation */
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: #F0A830;
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: #F0A830;
    }
}

/* --- FOOTER STYLES --- */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-link {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #F0A830;
    /* Yellow on hover */
    padding-left: 5px;
    /* Slight slide effect */
}

/* --- POPUP & FORM STYLES (Fixed Visibility) --- */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark background */
    z-index: 100000; /* On top of everything */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background-color: #ffffff; /* SOLID WHITE BACKGROUND */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7); /* Strong shadow for depth */
    border-top: 6px solid var(--brand-yellow);
    animation: popupFadeIn 0.4s ease-out;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #333; /* Dark grey for visibility */
    cursor: pointer;
    line-height: 1;
}
.popup-close:hover { color: red; }

/* Form Styles */
.popup-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.popup-form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a; /* Solid Black text */
}

.popup-form-group input, 
.popup-form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd; /* Thicker border */
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff; /* White input background */
    color: #333;
    box-sizing: border-box;
}

.popup-form-group input:focus, 
.popup-form-group select:focus {
    border-color: var(--brand-black);
    outline: none;
}

/* Submit Button */
.popup-btn {
    width: 100%;
    background-color: var(--brand-black);
    color: var(--brand-yellow);
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.3s;
}
.popup-btn:hover {
    background-color: #294408; /* Darker Green on Hover */
    transform: translateY(-2px);
}

@keyframes popupFadeIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- ROOM CARD BUTTON --- */
.card-book-btn {
    display: block;
    width: 100%;
    background-color: var(--brand-black);
    color: var(--brand-yellow);
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.card-book-btn:hover {
    background-color: #294408; /* Darker Green */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- ROOM GALLERY MODAL --- */
.room-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.room-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border: 2px solid white;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Nav Buttons inside Lightbox */
.lb-prev, .lb-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.lb-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lb-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lb-prev:hover, .lb-next:hover {
    background-color: var(--brand-yellow);
    color: black;
}

/* Close Button */
.lb-close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.lb-close:hover { color: var(--brand-yellow); }

/* --- UPDATED TABLE STYLES --- */
.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.table-responsive {
    overflow-x: auto; /* Allows scroll on very small phones */
}

.service-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.service-table thead {
    background-color: var(--brand-black);
}

.service-table thead th {
    color: white; /* Default text color white */
    padding: 18px 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Specific Header Colors override */
.service-table thead th:nth-child(2) { color: #81c784 !important; } /* Light Green for Included */
.service-table thead th:nth-child(3) { color: #e57373 !important; } /* Light Red for Excluded */

.service-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* Center the icons in columns 2 and 3 */
.center-icon {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32; /* Default green for checkmarks */
}

.service-table tr:last-child td {
    border-bottom: none;
}

.service-table tr:hover {
    background-color: #FFF5D3;
}

/* Mobile Tweaks */
@media(max-width: 600px) {
    .service-table td, .service-table th {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* --- COMMON AMENITIES SECTION --- */
.amenities-section {
    padding: 60px 0;
    background-color: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden; /* Keeps image inside corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.amenity-card:hover {
    transform: translateY(-5px); /* Lifts up on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.amenity-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills box without stretching */
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-img-box img {
    transform: scale(1.1); /* Slight zoom effect */
}

.amenity-info {
    padding: 20px;
    text-align: center;
}

.amenity-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--brand-black);
    font-weight: 700;
}

.amenity-info p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* --- FOOD MENU TABLE --- */
.food-menu-section {
    padding: 60px 0;
    background-color: #fff;
}

.food-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.food-table thead {
    background-color: var(--brand-black);
    color: var(--brand-yellow);
}

.food-table th, .food-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.food-table th {
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* Keeps headers on one line */
}

/* Highlight the Day Column */
.food-table td:first-child {
    font-weight: bold;
    color: var(--brand-black);
    background-color: #F9F9F4;
}

/* Mobile Responsive for Table */
@media (max-width: 768px) {
    .food-table {
        display: block;
        overflow-x: auto; /* Scrollable on phones */
        white-space: nowrap;
    }
}


 /* Make images responsive so they don't overflow */
.first img {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom gap on images */
}

/* Default State (Desktop) */
.desktop-div {
    display: block;
}

.mobile-div {
    display: none; /* Hide mobile by default */
}

/* Mobile State (Screens 768px and smaller) */
@media screen and (max-width: 768px) {
    .desktop-div {
        display: none !important;
    }
    .mobile-div {
        display: block !important;
    }
}