/* ==========================================================================
   Bush Creek Guest House - Base Styles (style.css / main.css)
   ========================================================================== */

/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */

   :root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Availability section background */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    --availability-button-bg: var(--primary-color);
}

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

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    /* Add padding-top to prevent content overlap with fixed navbar */
    /* *** Adjust this value based on final initial navbar height *** */
    padding-top: 110px;
    /* Adjusted based on 70px logo + 2*20px padding */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
}

/* Added H1 style */
h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

/* Added H4 */
h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin: 2em 0;
}

.clear {
    clear: both;
}

/* Basic Button Style (Optional - Customize as needed) */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
    /* Ensure text color remains white on hover */
}

/* ==========================================================================
   2. Navigation Bar
   ========================================================================== */

.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    /* Initial padding */
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
    /* Shrunk padding */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

/* --- Navbar Logo --- */
.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    /* Initial height */
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
    /* Shrunk height */
}

/* --- Navbar Links --- */
.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

/* --- Navbar Dropdown (with Hover Delay) --- */
li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    /* Start hidden */
    visibility: hidden;
    /* Start hidden for accessibility/interaction */
    pointer-events: none;
    /* Prevent interaction when hidden */
    position: absolute;
    background-color: var(--dark-bg);
    /* Dark background for base dropdown */
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    /* Transition with delay for HIDING */
    transition: opacity 0.2s ease 0.3s,
        /* Opacity fades out after 0.3s delay */
        visibility 0s linear 0.5s,
        /* Visibility changes instantly after 0.5s total */
        pointer-events 0s linear 0.5s;
    /* Pointer-events changes instantly after 0.5s */
}

/* Show dropdown on hover of parent OR dropdown itself */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    /* Make visible */
    visibility: visible;
    /* Make accessible/interactive */
    pointer-events: auto;
    /* Allow interaction */
    /* Transition for SHOWING (no delay) */
    transition: opacity 0.2s ease 0s,
        visibility 0s linear 0s,
        pointer-events 0s linear 0s;
}


.dropdown-content a {
    color: var(--light-text);
    /* Light text for dark background */
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle hover on dark background */
    color: var(--white);
}


/* --- Navbar Book Now Button --- */
.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

/* --- Navbar Mobile Toggle --- */
.nav-toggle {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}


/* ==========================================================================
   3. Hero Section (Carousel - Homepage Specific)
   ========================================================================== */

.hero-section {
    position: relative;
    height: 660px;
    /* Adjusted Height */
    overflow: hidden;
    background-color: var(--dark-bg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
}

.slide.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.slide.active {
    display: block;
    opacity: 1;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* --- Carousel Controls --- */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    transition: background-color 0.6s ease, opacity 0.6s ease;
    transition-timing-function: ease-in-out;
    border-radius: 50%;
    user-select: none;
    text-decoration: none;
    z-index: 15;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-container:hover .prev,
.slider-container:hover .next {
    opacity: 1;
}

.prev:hover,
.next:hover {
    color: white;
    opacity: 1;
    /* Keep opacity on hover */
    background-color: rgba(0, 0, 0, 0.3);
    /* Optional: subtle bg on hover */
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 30px;
    z-index: 15;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 3px;
    background-color: grey;
    border: 1px solid white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}


/* ==========================================================================
   4. Availability Checker (Homepage Specific)
   ========================================================================== */

.availability-section {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.availability-checker {
    max-width: 700px;
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
}

.availability-checker .form-group.input-with-icon {
    flex: 1 1 100px;
    /* Adjust basis */
    width: auto;
    /* Let flexbox determine width */
    min-width: 100px;
    /* Set minimum width */
    position: relative;
}

.availability-checker label {
    display: none;
}

.availability-checker input[type="text"],
.availability-checker input[type="date"] {
    width: 100%;
    padding: 8px 40px 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    /* Removed border-radius */
    font-family: var(--sans-serif-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
    height: 38px;
    background-color: var(--white);
    line-height: normal;
}

.availability-checker input::placeholder {
    color: #787878;
    font-size: 13px;
    font-weight: 400;
    opacity: 1;
}

.availability-checker input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.input-with-icon .input-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #787878;
    pointer-events: none;
    font-size: 1.2rem;
    /* Slightly larger icon */
    line-height: 1;
}

.availability-checker button {
    background-color: var(--availability-button-bg);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    height: 38px;
    white-space: nowrap;
    letter-spacing: 0.4px;
    line-height: normal;
    flex-shrink: 0;
}

.availability-checker button:hover {
    background-color: #6a3610;
}


/* ==========================================================================
   5. Content Sections (Intro, Gallery - Homepage Specific)
   ========================================================================== */

/* --- Intro Section --- */
.intro-section {
    padding: 20px 0;
    /* Restored padding */
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.intro-section h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    /* Restore margin */
    line-height: 1.7;
}

.intro-section .quote {
    font-family: var(--serif-font);
    font-style: italic;
    color: #777;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 10px 0;
    /* Restored padding */
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: var(--white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 320px;
    /* Restored height */
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 3px;
}

.gallery-item h3 {
    font-size: 1.2rem;
    /* Restored size */
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
}

.gallery-item h3 a {
    color: var(--text-color);
}

.gallery-item h3 a:hover {
    color: var(--primary-color);
}

.gallery-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}


/* ==========================================================================
   6. Parallax Section (Homepage Specific)
   ========================================================================== */

.parallax-section {
    /* == IMPORTANT: Replace with your image path == */
    background-image: url('/assets/imgs/farm/scenary_2.jpg');
    /* <<<--- Example Path */

    min-height: 550px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 40px 15px;
}

.parallax-content {
    padding: 30px 50px;
    border-radius: 5px;
    max-width: 600px;
}

.parallax-content p {
    font-size: 1.9rem;
    /* Larger size for parallax quote */
    font-family: var(--serif-font);
    /* Match quote style */
    font-style: italic;
    margin-bottom: 0;
    /* Remove margin if it's the only content */
    line-height: 1.5;
    /* Adjust line height */
    text-shadow: 3px 3px 4px #000000;
    position: static;
    transform: none;
}


/* ==========================================================================
   7. Footer
   ========================================================================== */

.footer {
    background-color: var(--dark-bg);
    /* Use variable */
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}


/* ==========================================================================
   8. Litepicker Custom Styles (Date Picker - Homepage Specific)
   ========================================================================== */

.litepicker {
    font-family: var(--sans-serif-font);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    z-index: 1100;
    /* Ensure it's above navbar */
}

.litepicker .container__months .month-item .month-item-header {
    background-color: var(--white);
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
}

.litepicker .container__months .month-item .month-item-header div {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.litepicker .container__months .month-item .month-item-header button {
    color: var(--text-color);
    width: 32px;
    height: 32px;
}

.litepicker .container__months .month-item .month-item-header button:hover {
    background-color: var(--light-bg);
    border-radius: 50%;
}

.litepicker .container__months .month-item .days-oftheweek {
    font-weight: 500;
    color: #888;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: none;
}

.litepicker .container__months .month-item .days-oftheweek div {
    padding-bottom: 0;
}

.litepicker .container__months .month-item .day-item {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-color);
    border: none;
    border-radius: 4px;
}

.litepicker .container__months .month-item .day-item:hover {
    background-color: var(--light-bg);
    color: var(--text-color);
    border-radius: 4px;
}

.litepicker .container__months .month-item .day-item.is-start-date,
.litepicker .container__months .month-item .day-item.is-end-date {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
}

.litepicker .container__months .month-item .day-item.is-in-range {
    background-color: rgba(138, 88, 64, 0.15);
    color: var(--text-color);
    border-radius: 0;
}

.litepicker .container__months .month-item .day-item.is-start-date.is-in-range {
    background-color: var(--primary-color);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.litepicker .container__months .month-item .day-item.is-end-date.is-in-range {
    background-color: var(--primary-color);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.litepicker .container__months .month-item .day-item.is-locked {
    color: var(--border-color);
    text-decoration: line-through;
    pointer-events: none;
}

.litepicker .container__tooltip {
    background-color: var(--dark-bg);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.8rem;
}


/* ==========================================================================
   9. Responsive Media Queries
   ========================================================================== */

/* --- Medium Devices (Tablets, etc.) --- */
@media (max-width: 992px) {

    /* Availability Checker */
    .availability-checker {
        width: 90%;
        max-width: none;
    }

    .availability-checker .form-group.input-with-icon {
        flex-basis: calc(50% - 5px);
    }

    .availability-checker button {
        flex-basis: 100%;
        margin-top: 10px;
    }

    /* Navbar */
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }

    /* Hero */
    .hero-text {
        font-size: 2.5rem;
    }

    /* Keep if used */
}


/* --- Small Devices (Mobiles) --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    /* Navbar */
    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }

    /* Hero */
    .hero-section {
        height: 55vh;
    }

    .hero-text {
        font-size: 1.8rem;
        width: 90%;
        white-space: normal;
    }

    /* Keep if used */
    .awards-tab {
        display: none;
    }

    /* Keep if used */
    .prev,
    .next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
        font-size: 18px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        right: 15px;
    }

    /* Availability Checker */
    .availability-checker {
        width: calc(100% - 30px);
        margin: 25px auto;
        align-items: stretch;
    }

    .availability-checker .form-group.input-with-icon {
        flex-basis: 100%;
        min-width: 0;
    }

    .availability-checker button {
        margin-top: 10px;
        flex-basis: 100%;
        height: 42px;
    }

    /* Parallax */
    .parallax-section {
        background-attachment: scroll;
        min-height: 350px;
    }

    .parallax-content p {
        font-size: 1.3rem;
        white-space: normal;
        position: static;
        transform: none;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
        margin-bottom: 0;
    }

    .parallax-content {
        padding: 20px 30px;
        background-color: rgba(0, 0, 0, 0.6);
    }

    /* Intro */
    .intro-section {
        padding: 40px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Desktop Styles Refinements (Overrides for >= 769px) --- */
@media (min-width: 769px) {

    /* Navbar */
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--white) !important;
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.5s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.5s ease 0.5s, visibility 0.1s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--text-color) !important;
        padding: 10px 15px !important;
        text-align: left !important;
    }

    .dropdown-content a:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }

    /* Availability Checker */
    .availability-checker {
        align-items: flex-end !important;
        justify-content: center !important;
    }

    .availability-checker .form-group.input-with-icon {
        flex: 1 1 200px !important;
        min-width: 180px !important;
    }

    .availability-checker button {
        flex-basis: auto !important;
        min-width: auto !important;
        margin-top: 0 !important;
    }

    /* Parallax */
    .parallax-content p {
        position: static;
        transform: none;
        white-space: normal;
    }
}

/* ==========================================================================
   10. Page Specific Styles (Add below this line)
   ========================================================================== */

/* --- Activity List Styles (Used on local-restaurants.html, local-activities.html etc.) --- */
.activity-list {
    margin-top: 30px;
}

.activity-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-card header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    /* Larger heading */
}

.activity-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.activity-card footer {
    display: flex;
    flex-wrap: wrap;
    /* Allow buttons to wrap on small screens */
    gap: 10px;
    /* Space between buttons */
}

.activity-card .activity-btn {
    padding: 8px 15px;
    /* Slightly smaller buttons */
    font-size: 0.8rem;
}

/* --- Activity Categories Grid Styles (Used on activities.html) --- */
.activity-categories {
    margin-top: 40px;
    text-align: center;
    /* Center the section heading */
}

.activity-categories h2 {
    margin-bottom: 30px;
}

.activity-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid */
    gap: 30px;
    text-align: left;
    /* Reset text alignment for items */
}

.activity-category-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    /* Ensure image corners are rounded if needed */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
}

.activity-category-item img {
    width: 100%;
    height: 220px;
    /* Fixed height for images */
    object-fit: cover;
    /* Cover the area */
    border-bottom: 1px solid #e0e0e0;
}

.activity-category-item h3 {
    font-size: 1.3rem;
    margin: 15px 20px 10px 20px;
    /* Add padding around text */
}

.activity-category-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    /* Add padding */
    flex-grow: 1;
    /* Allow paragraph to take up space */
}

.activity-category-item .btn {
    margin: 0 20px 20px 20px;
    /* Add padding */
    align-self: flex-start;
    /* Align button to the start */
}

/* --- Responsive adjustments for Activity Cards/Categories --- */
@media (max-width: 768px) {
    .activity-card footer {
        flex-direction: column;
        /* Stack buttons vertically */
        align-items: flex-start;
        /* Align buttons left */
    }

    .activity-card .activity-btn {
        width: 100%;
        /* Make buttons full width */
        text-align: center;
    }

    .activity-categories-grid {
        grid-template-columns: 1fr;
        /* Single column on small screens */
        gap: 20px;
    }

    .activity-category-item img {
        height: 200px;
        /* Adjust image height */
    }
}

/* --- Hero Image for Inner Pages --- */
.hero-image {
    height: 350px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    /* Space below hero image */
    position: relative;
    /* For potential overlay/text */
}

/* Optional Hero Overlay */
.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Example overlay */
}

/* Optional Hero Title */
.hero-image .hero-title-container {
    position: relative;
    /* To sit above overlay */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image .hero-title-container h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    margin: 0;
}

/* Responsive Hero Image */
@media (max-width: 992px) {
    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }
}

/* --- Main Content Area Padding --- */
main {
    padding-top: 40px;
    /* Space below navbar/hero */
    padding-bottom: 60px;
    /* Space above footer */
    min-height: calc(100vh - 110px - 250px);
    /* Adjust min-height calculation if needed */
}

/* ==========================================================================
   Bush Creek Guest House - Base Styles (style.css / main.css)
   ========================================================================== */

/* ... (Keep Sections 1-5: Reset, Global, Nav, Main Content, Footer, Responsive Base) ... */
/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */

:root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Light section backgrounds */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    /* Add other global component variables if needed */
}

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

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding-top: 110px;
    /* Adjust based on initial navbar height */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    /* Lighter border */
    margin: 2.5em 0;
    /* Increased margin */
}

.clear {
    clear: both;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
    line-height: 1.4;
    /* Ensure consistent line height */
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
}

/* Icon Button adjustment */
.btn i {
    margin-right: 6px;
    font-size: 0.9em;
    /* Relative to button font size */
}


/* ==========================================================================
   2. Navigation Bar (Keep existing styles)
   ========================================================================== */

.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
}

.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

/* Add active class style for nav links */
.nav-links a.active {
    color: var(--white);
    font-weight: 500;
    /* Make active link slightly bolder */
    /* Optional: Add underline or other indicator */
    /* border-bottom: 2px solid var(--primary-color); */
    /* padding-bottom: 3px; */
}


.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* ==========================================================================
   3. Main Content Area & Common Page Elements
   ========================================================================== */

main {
    min-height: calc(100vh - 110px - 250px);
    /* Viewport height - navbar height - approx footer height */
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-content {
    /* Optional: Add general padding or styles for the main content area */
}

/* Hero Image for Inner Pages */
.hero-image {
    height: 350px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    /* Space below hero image */
    position: relative;
    /* For potential overlay/text */
}

/* Optional Hero Overlay */
.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Example overlay */
}

/* Optional Hero Title */
.hero-image .hero-title-container {
    position: relative;
    /* To sit above overlay */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Center text */
}

.hero-image .hero-title-container h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    margin: 0;
    padding: 0 15px;
    /* Add padding for smaller screens */
}


/* Intro Section Styling (Used on multiple pages) */
.intro-section {
    padding: 20px 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    /* Center align */
}

.intro-section h2 {
    font-size: 1.9rem;
    /* Slightly larger */
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    /* Remove bottom margin if it's the last element */
    line-height: 1.7;
}


/* ==========================================================================
   4. Footer (Keep existing styles)
   ========================================================================== */

.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}


/* ==========================================================================
   5. Responsive Media Queries (Keep existing queries for Nav/Footer)
   ========================================================================== */


/* ==========================================================================
   5. Responsive Media Queries (Keep existing queries for Nav/Footer)
   ========================================================================== */

/* --- Medium Devices --- */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }
}


/* --- Small Devices --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        display: block;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link in mobile dropdown */
    .dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        font-weight: 500;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }

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

    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }

    .intro-section {
        padding: 10px 0;
    }
}


/* --- Desktop Styles Refinements --- */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--dark-bg) !important;
        /* Reverted to dark */
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
        padding: 10px 15px !important;
        text-align: left !important;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link hover in desktop dropdown */
    .dropdown-content a.active {
        color: var(--primary-color) !important;
        background-color: var(--light-bg) !important;
    }

    /* Reverted active style */
    .dropdown-content a.active:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ==========================================================================
   6. Page Specific Styles (Add below this line)
   ========================================================================== */

/* --- Activity List Styles --- */
.activity-list {
    margin-top: 30px;
}

.activity-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-card header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.activity-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.activity-card footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-card .activity-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* --- Activity Categories Grid Styles --- */
.activity-categories {
    margin-top: 40px;
    text-align: center;
}

.activity-categories h2 {
    margin-bottom: 30px;
}

.activity-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.activity-category-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.activity-category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.activity-category-item h3 {
    font-size: 1.3rem;
    margin: 15px 20px 10px 20px;
}

.activity-category-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.activity-category-item .btn {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
}

/* --- Rates Table Styles --- */
.rates-table-section {
    margin-top: 30px;
}

.rates-table-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.rates-table th,
.rates-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

.rates-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rates-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.rates-table tbody tr:hover {
    background-color: #f0f0f0;
}

.rates-table td:nth-child(n+2) {
    text-align: right;
}

.rates-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* --- Special Offers Styles --- */
.offers-section {
    margin-top: 30px;
}

.offer-placeholder {
    border: 1px dashed var(--border-color);
    padding: 30px;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 5px;
    color: #666;
}

.offer-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

.offer-placeholder p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

/* Example offer card styles */
.offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.offer-validity {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.offer-content p {
    margin-bottom: 20px;
    color: #555;
}

.offer-content .btn {
    align-self: flex-start;
}

/* --- Room List Styles (Used on rooms.html) --- */
.room-list-section {
    margin-top: 30px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.room-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.room-card-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 425;
    text-align: center;
}


.room-card-details {
    display: block;
    gap: 35px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #555;
    flex-wrap: wrap;
    text-align: center;
}

.room-card-details span {
    align-items: center;
    gap: 35px;
    text-align: center;
    padding: 15px;
    font-weight: 350;
}

.room-card-details i {
    color: var(--primary-color);
    font-size: 0.8rem;
    padding-right: 2px;
    text-align: center;
}

.room-card-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-card-content .btn {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 12px;
    width: 50%;
}



/* --- Location Page Styles --- */
.location-section {
    margin-top: 30px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.map-container h2,
.directions-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.map-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.directions-text p {
    margin-bottom: 1em;
    color: #555;
}

.directions-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #555;
}

.directions-text li {
    margin-bottom: 0.5em;
}

.directions-text strong {
    color: var(--text-color);
}

/* --- Contact Page Styles --- */
.contact-section {
    margin-top: 0px;
    /* Removed top margin to align with titles */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-container h3,
.contact-details-container h3 {
    margin-bottom: 25px;
    /* Increased space below heading */
    font-size: 1.5rem;
    /* Slightly smaller than H2 */
    font-weight: 600;
    border-bottom: 1px solid #eee;
    /* Add subtle line below heading */
    padding-bottom: 10px;
    /* Space between text and line */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    /* Smaller label */
    color: #555;
    /* Lighter label text */
}

.contact-form label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d5d5;
    /* Slightly darker border */
    border-radius: 0px;
    /* No radius */
    font-family: var(--sans-serif-font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
    /* No focus shadow */
}

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

.contact-form .form-group-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group-row .form-group {
    flex: 1;
}

.contact-form button[type="submit"] {
    width: auto;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.contact-details p {
    margin-bottom: 18px;
    /* Increased spacing */
    display: flex;
    align-items: flex-start;
    /* Align icon top */
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.contact-details i {
    width: 20px;
    text-align: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    /* Align icon better */
    flex-shrink: 0;
}

.contact-details a {
    color: var(--primary-color);
    word-break: break-word;
    /* Break long emails/links */
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details hr {
    margin: 25px 0;
    border-color: #eee;
}

.contact-details .address-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-left: 35px;
    /* Align with text */
}

.find-us-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.find-us-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.find-us-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.find-us-section .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
}


/* --- Responsive adjustments for Location/Contact --- */
@media (min-width: 768px) {

    /* Location Page */
    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        /* Adjusted ratio */
        align-items: start;
    }

    .contact-form button[type="submit"] {
        width: auto;
    }
}

@media (min-width: 992px) {
    .location-grid {
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }
}


/* --- Responsive adjustments for Activities/Rates/Offers/Rooms --- */
@media (max-width: 768px) {

    /* Activity Cards */
    .activity-card footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity-card .activity-btn {
        width: 100%;
        text-align: center;
    }

    /* Activity Categories */
    .activity-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-category-item img {
        height: 200px;
    }

    /* Rates Table */
    .rates-table th,
    .rates-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .rates-table th {
        font-size: 0.8rem;
    }

    /* Offer Cards */
    .offer-card img {
        height: 200px;
    }

    /* Room Cards */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Individual Room Details */
    .room-gallery h2,
    .room-info h2 {
        font-size: 1.6rem;
    }

    /* Slightly smaller headings */
    .contact-form .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    /* Stack date inputs */
    .contact-form button[type="submit"] {
        width: 100%;
    }

    /* Full width button on mobile */
}

@media (min-width: 768px) {

    /* Offer Cards */
    .offer-card {
        flex-direction: row;
    }

    .offer-card img {
        width: 40%;
        height: auto;
        min-height: 250px;
    }

    .offer-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Add other page-specific styles below --- */
/* ==========================================================================
   Bush Creek Guest House - Base Styles (style.css / main.css)
   ========================================================================== */

/* ... (Keep Sections 1-4: Reset, Global, Nav, Footer) ... */
/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */

:root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Light section backgrounds */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    /* Add other global component variables if needed */
}

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

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding-top: 110px;
    /* Adjust based on initial navbar height */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    /* Lighter border */
    margin: 2.5em 0;
    /* Increased margin */
}

.clear {
    clear: both;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
    line-height: 1.4;
    /* Ensure consistent line height */
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
}

/* Icon Button adjustment */
.btn i {
    margin-right: 6px;
    font-size: 0.9em;
    /* Relative to button font size */
}


/* ==========================================================================
   2. Navigation Bar (Keep existing styles)
   ========================================================================== */

.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
}

.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

/* Add active class style for nav links */
.nav-links a.active {
    color: var(--white);
    font-weight: 500;
    /* Make active link slightly bolder */
}

/* Style for active dropdown button */
.nav-links .dropbtn.active {
    color: var(--white);
    font-weight: 500;
}

/* Style for active link within dropdown */
.dropdown-content a.active {
    color: var(--primary-color);
    /* Highlight color */
    background-color: var(--light-bg);
    /* Light background */
    font-weight: 500;
}


.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* ==========================================================================
   3. Main Content Area & Common Page Elements
   ========================================================================== */

main {
    min-height: calc(100vh - 110px - 250px);
    /* Viewport height - navbar height - approx footer height */
    /* Removed top padding as map section might go full width */
    padding-bottom: 60px;
}

.page-content {
    /* Optional: Add general padding or styles for the main content area */
}

/* Hero Image for Inner Pages */
.hero-image {
    height: 350px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    /* Space below hero image */
    position: relative;
    /* For potential overlay/text */
}

/* Optional Hero Overlay */
.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Example overlay */
}

/* Optional Hero Title */
.hero-image .hero-title-container {
    position: relative;
    /* To sit above overlay */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Center text */
}

.hero-image .hero-title-container h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    margin: 0;
    padding: 0 15px;
    /* Add padding for smaller screens */
}


/* Intro Section Styling (Used on multiple pages) */
.intro-section {
    padding: 20px 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    /* Center align */
}

.intro-section h2 {
    font-size: 1.9rem;
    /* Slightly larger */
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    /* Remove bottom margin if it's the last element */
    line-height: 1.7;
}

/* Page Title Section (Used on Contact page based on image) */
.page-title-section {
    text-align: center;
    margin-bottom: 50px;
    /* Space below titles */
    margin-top: 20px;
    /* Space above titles if no hero image */
}

.page-title-main {
    font-size: 2.8rem;
    /* Larger main title */
    color: #aaa;
    /* Lighter color like image */
    font-weight: 400;
    /* Lighter weight */
    margin-bottom: 0.2em;
    margin-top: 0;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.8rem;
    /* Smaller subtitle */
    font-weight: 600;
    margin-bottom: 0.8em;
    margin-top: 0;
}

.page-description {
    max-width: 700px;
    /* Limit width of description */
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}


/* ==========================================================================
   4. Footer (Keep existing styles)
   ========================================================================== */

.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}


/* ==========================================================================
   5. Responsive Media Queries (Keep existing queries for Nav/Footer)
   ========================================================================== */

/* --- Medium Devices --- */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }

    .page-title-main {
        font-size: 2.4rem;
    }

    .page-subtitle {
        font-size: 1.6rem;
    }
}


/* --- Small Devices --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        display: block;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link in mobile dropdown */
    .dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        font-weight: 500;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }

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

    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }

    .intro-section {
        padding: 10px 0;
    }

    .page-title-main {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.4rem;
    }

    .page-title-section {
        margin-bottom: 30px;
    }
}


/* --- Desktop Styles Refinements --- */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--dark-bg) !important;
        /* Reverted to dark */
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
        padding: 10px 15px !important;
        text-align: left !important;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link hover in desktop dropdown */
    .dropdown-content a.active {
        color: var(--primary-color) !important;
        background-color: var(--light-bg) !important;
    }

    /* Reverted active style */
    .dropdown-content a.active:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ==========================================================================
   6. Page Specific Styles (Add below this line)
   ========================================================================== */

/* --- Activity List Styles --- */
.activity-list {
    margin-top: 30px;
}

.activity-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-card header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.activity-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.activity-card footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-card .activity-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* --- Activity Categories Grid Styles --- */
.activity-categories {
    margin-top: 40px;
    text-align: center;
}

.activity-categories h2 {
    margin-bottom: 30px;
}

.activity-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.activity-category-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.activity-category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.activity-category-item h3 {
    font-size: 1.3rem;
    margin: 15px 20px 10px 20px;
}

.activity-category-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.activity-category-item .btn {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
}

/* --- Rates Table Styles --- */
.rates-table-section {
    margin-top: 30px;
}

.rates-table-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.rates-table th,
.rates-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

.rates-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rates-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.rates-table tbody tr:hover {
    background-color: #f0f0f0;
}

.rates-table td:nth-child(n+2) {
    text-align: right;
}

.rates-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* --- Special Offers Styles --- */
.offers-section {
    margin-top: 30px;
}

.offer-placeholder {
    border: 1px dashed var(--border-color);
    padding: 30px;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 5px;
    color: #666;
}

.offer-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

.offer-placeholder p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

/* Example offer card styles */
.offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.offer-validity {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.offer-content p {
    margin-bottom: 20px;
    color: #555;
}

.offer-content .btn {
    align-self: flex-start;
}




/* --- Location Page Styles --- */
.map-section {
    margin: 0;
    padding: 0;
    /* Remove default margins/padding if needed */
}

.map-embed.full-width-map iframe {
    display: block;
    width: 100%;
    /* height: 550px; /* Adjust height as desired */
    border: none;
    /* Remove iframe border */
}

.directions-section {
    padding: 40px 0;
    /* Add padding above/below directions */
}

.directions-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.directions-text {
    max-width: 800px;
    margin: 0 auto;
    /* Center text block */
}

.directions-text p {
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text li {
    margin-bottom: 0.5em;
}

.directions-text strong {
    color: var(--text-color);
}

/* REMOVED: .location-grid styles as it's no longer used for layout */


/* --- Contact Page Styles --- */
.contact-section {
    margin-top: 0px;
    /* Removed top margin to align with titles */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-container h3,
.contact-details-container h3 {
    margin-bottom: 25px;
    /* Increased space below heading */
    font-size: 1.5rem;
    /* Slightly smaller than H2 */
    font-weight: 600;
    border-bottom: 1px solid #eee;
    /* Add subtle line below heading */
    padding-bottom: 10px;
    /* Space between text and line */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    /* Smaller label */
    color: #555;
    /* Lighter label text */
}

.contact-form label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d5d5;
    /* Slightly darker border */
    border-radius: 0px;
    /* No radius */
    font-family: var(--sans-serif-font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background-color: var(--white);
    /* Ensure background is white */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
    /* No focus shadow */
}

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

.contact-form .form-group-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group-row .form-group {
    flex: 1;
}

.contact-form button[type="submit"] {
    width: auto;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.contact-details p {
    margin-bottom: 18px;
    /* Increased spacing */
    display: flex;
    align-items: flex-start;
    /* Align icon top */
    font-size: 0.95rem;
    /* Adjusted size */
    color: #444;
    line-height: 1.5;
}

.contact-details i {
    width: 20px;
    /* Adjusted icon width */
    text-align: center;
    margin-right: 15px;
    /* Increased space */
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    /* Align icon better */
    flex-shrink: 0;
}

.contact-details a {
    color: var(--primary-color);
    word-break: break-word;
    /* Break long emails/links */
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details hr {
    margin: 25px 0;
    border-color: #eee;
}

.contact-details .address-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-left: 35px;
    /* Align with text */
}

.find-us-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.find-us-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.find-us-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.find-us-section .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
}


/* --- Responsive adjustments for Location/Contact --- */
@media (min-width: 768px) {

    /* Location Page: Remove grid layout */
    /* .location-grid { grid-template-columns: 1fr 1fr; align-items: start; } */
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        /* Adjusted ratio */
        align-items: start;
    }

    .contact-form button[type="submit"] {
        width: auto;
    }
}

@media (min-width: 992px) {

    /* Location Page: Remove grid layout */
    /* .location-grid { gap: 50px; } */
    .contact-grid {
        gap: 50px;
    }
}


/* --- Responsive adjustments for Activities/Rates/Offers/Rooms --- */
@media (max-width: 768px) {

    /* Activity Cards */
    .activity-card footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity-card .activity-btn {
        width: 100%;
        text-align: center;
    }

    /* Activity Categories */
    .activity-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-category-item img {
        height: 200px;
    }

    /* Rates Table */
    .rates-table th,
    .rates-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .rates-table th {
        font-size: 0.8rem;
    }

    /* Offer Cards */
    .offer-card img {
        height: 200px;
    }

    /* Room Cards */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Individual Room Details */
    .room-gallery h2,
    .room-info h2 {
        font-size: 1.6rem;
    }

    /* Slightly smaller headings */
    .contact-form .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    /* Stack date inputs */
    .contact-form button[type="submit"] {
        width: 100%;
    }

    /* Full width button on mobile */
}

@media (min-width: 768px) {

    /* Offer Cards */
    .offer-card {
        flex-direction: row;
    }

    .offer-card img {
        width: 40%;
        height: auto;
        min-height: 250px;
    }

    .offer-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Add other page-specific styles below --- */
/* ==========================================================================
   Bush Creek Guest House - Base Styles (style.css / main.css)
   ========================================================================== */

/* ... (Keep Sections 1-5: Reset, Global, Nav, Main Content, Footer, Responsive Base) ... */
/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */

:root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Light section backgrounds */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    /* Add other global component variables if needed */
}

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

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding-top: 110px;
    /* Adjust based on initial navbar height */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    /* Lighter border */
    margin: 2.5em 0;
    /* Increased margin */
}

.clear {
    clear: both;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
    line-height: 1.4;
    /* Ensure consistent line height */
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
}

/* Icon Button adjustment */
.btn i {
    margin-right: 6px;
    font-size: 0.9em;
    /* Relative to button font size */
}


/* ==========================================================================
   2. Navigation Bar (Keep existing styles)
   ========================================================================== */

.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
}

.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

/* Add active class style for nav links */
.nav-links a.active {
    color: var(--white);
    font-weight: 500;
    /* Make active link slightly bolder */
}

/* Style for active dropdown button */
.nav-links .dropbtn.active {
    color: var(--white);
    font-weight: 500;
}

/* Style for active link within dropdown */
.dropdown-content a.active {
    color: var(--primary-color);
    /* Highlight color */
    background-color: var(--light-bg);
    /* Light background */
    font-weight: 500;
}


.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* ==========================================================================
   3. Main Content Area & Common Page Elements
   ========================================================================== */

main {
    min-height: calc(100vh - 110px - 250px);
    /* Viewport height - navbar height - approx footer height */
    /* Removed top padding as map section might go full width */
    padding-bottom: 60px;
}

.page-content {
    /* Optional: Add general padding or styles for the main content area */
}

/* Hero Image for Inner Pages */
.hero-image {
    height: 350px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    /* Space below hero image */
    position: relative;
    /* For potential overlay/text */
}

/* Optional Hero Overlay */
.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Example overlay */
}

/* Optional Hero Title */
.hero-image .hero-title-container {
    position: relative;
    /* To sit above overlay */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Center text */
}

.hero-image .hero-title-container h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    margin: 0;
    padding: 0 15px;
    /* Add padding for smaller screens */
}


/* Intro Section Styling (Used on multiple pages) */
.intro-section {
    padding: 20px 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    /* Center align */
}

.intro-section h2 {
    font-size: 1.9rem;
    /* Slightly larger */
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    /* Remove bottom margin if it's the last element */
    line-height: 1.7;
}

/* Page Title Section (Used on Contact page based on image) */
.page-title-section {
    text-align: center;
    margin-bottom: 50px;
    /* Space below titles */
    margin-top: 20px;
    /* Space above titles if no hero image */
}

.page-title-main {
    font-size: 2.8rem;
    /* Larger main title */
    color: #aaa;
    /* Lighter color like image */
    font-weight: 400;
    /* Lighter weight */
    margin-bottom: 0.2em;
    margin-top: 0;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.8rem;
    /* Smaller subtitle */
    font-weight: 600;
    margin-bottom: 0.8em;
    margin-top: 0;
}

.page-description {
    max-width: 700px;
    /* Limit width of description */
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}


/* ==========================================================================
   4. Footer (Keep existing styles)
   ========================================================================== */

.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}


/* ==========================================================================
   5. Responsive Media Queries (Keep existing queries for Nav/Footer)
   ========================================================================== */

/* --- Medium Devices --- */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }

    .page-title-main {
        font-size: 2.4rem;
    }

    .page-subtitle {
        font-size: 1.6rem;
    }
}


/* --- Small Devices --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        display: block;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link in mobile dropdown */
    .dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        font-weight: 500;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }

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

    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }

    .intro-section {
        padding: 10px 0;
    }

    .page-title-main {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.4rem;
    }

    .page-title-section {
        margin-bottom: 30px;
    }
}


/* --- Desktop Styles Refinements --- */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--dark-bg) !important;
        /* Reverted to dark */
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
        padding: 10px 15px !important;
        text-align: left !important;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link hover in desktop dropdown */
    .dropdown-content a.active {
        color: var(--primary-color) !important;
        background-color: var(--light-bg) !important;
    }

    /* Reverted active style */
    .dropdown-content a.active:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ==========================================================================
   6. Page Specific Styles (Add below this line)
   ========================================================================== */

/* --- Activity List Styles --- */
.activity-list {
    margin-top: 30px;
}

.activity-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-card header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.activity-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.activity-card footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-card .activity-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* --- Activity Categories Grid Styles --- */
.activity-categories {
    margin-top: 40px;
    text-align: center;
}

.activity-categories h2 {
    margin-bottom: 30px;
}

.activity-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.activity-category-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.activity-category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.activity-category-item h3 {
    font-size: 1.3rem;
    margin: 15px 20px 10px 20px;
}

.activity-category-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.activity-category-item .btn {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
}

/* --- Rates Table Styles --- */
.rates-table-section {
    margin-top: 30px;
}

.rates-table-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.rates-table th,
.rates-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

.rates-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rates-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.rates-table tbody tr:hover {
    background-color: #f0f0f0;
}

.rates-table td:nth-child(n+2) {
    text-align: right;
}

.rates-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* --- Special Offers Styles --- */
.offers-section {
    margin-top: 30px;
}

.offer-placeholder {
    border: 1px dashed var(--border-color);
    padding: 30px;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 5px;
    color: #666;
}

.offer-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

.offer-placeholder p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

/* Example offer card styles */
.offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.offer-validity {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.offer-content p {
    margin-bottom: 20px;
    color: #555;
}

.offer-content .btn {
    align-self: flex-start;
}




/* --- Location Page Styles --- */
.map-section {
    margin: 0;
    padding: 0;
}

.map-embed.full-width-map iframe {
    display: block;
    width: 100%;
    border: none;
}

.directions-section {
    padding: 40px 0;
}

.directions-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.directions-text {
    max-width: 800px;
    margin: 0 auto;
}

.directions-text p {
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text li {
    margin-bottom: 0.5em;
}

.directions-text strong {
    color: var(--text-color);
}

/* --- Contact Page Styles --- */
.contact-section {
    margin-top: 0px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-container h3,
.contact-details-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #555;
}

.contact-form label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d5d5;
    border-radius: 0px;
    font-family: var(--sans-serif-font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

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

.contact-form .form-group-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group-row .form-group {
    flex: 1;
}

.contact-form button[type="submit"] {
    width: auto;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.contact-details p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.contact-details i {
    width: 20px;
    text-align: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details a {
    color: var(--primary-color);
    word-break: break-word;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details hr {
    margin: 25px 0;
    border-color: #eee;
}

.contact-details .address-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-left: 35px;
}

.find-us-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.find-us-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.find-us-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.find-us-section .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
}

/* --- Gallery Page Styles --- */
.gallery-page-section {
    margin-top: 30px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Adjust minmax for desired size */
    gap: 15px;
}

.gallery-page-item img {
    border: 1px solid #eee;
    background-color: var(--light-bg);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    height: 250px;
    /* Fixed height for grid items */
    object-fit: cover;
}

.gallery-page-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Lightbox Styles --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Add transition */
}

/* Add 'show' class via JS to trigger transition */
.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-image {
    display: block;
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #ccc;
}


/* --- Responsive adjustments --- */
@media (min-width: 768px) {

    /* Location Page: Remove grid layout */
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    .contact-form button[type="submit"] {
        width: auto;
    }

    /* Offer Cards */
    .offer-card {
        flex-direction: row;
    }

    .offer-card img {
        width: 40%;
        height: auto;
        min-height: 250px;
    }

    .offer-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Individual Room */
    .room-details-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .room-availability {
        flex-direction: row;
    }

    .room-availability .form-group.input-with-icon {
        flex: 1 1 180px;
    }

    .room-availability button {
        width: auto;
        margin-top: 0;
        flex-shrink: 0;
    }

    .availability-note {
        text-align: left;
    }
}

@media (min-width: 992px) {

    /* Location Page: Remove grid layout */
    .contact-grid {
        gap: 50px;
    }

    .room-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    /* Activity Cards */
    .activity-card footer {
        flex-direction: column;
        align-items: flex-start;
    }

    */ .activity-card .activity-btn {
        width: 100%;
        text-align: center;
    }

    /* Activity Categories */
    .activity-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-category-item img {
        height: 200px;
    }

    /* Rates Table */
    .rates-table th,
    .rates-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .rates-table th {
        font-size: 0.8rem;
    }

    /* Offer Cards */
    .offer-card img {
        height: 200px;
    }

    /* Room Cards */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Individual Room Details */
    .room-gallery h2,
    .room-info h2 {
        font-size: 1.6rem;
    }

    .contact-form .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form button[type="submit"] {
        width: 100%;
    }

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

    .gallery-page-item img {
        height: 150px;
    }

    .lightbox-close {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
}


/* --- Add other page-specific styles below --- */
/* ... (Keep Sections 1-5: Reset, Global, Nav, Main Content, Footer, Responsive Base) ... */
/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */

:root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Light section backgrounds */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    /* Add other global component variables if needed */
}

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

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding-top: 110px;
    /* Adjust based on initial navbar height */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    /* Lighter border */
    margin: 2.5em 0;
    /* Increased margin */
}

.clear {
    clear: both;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
    line-height: 1.4;
    /* Ensure consistent line height */
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
}

/* Icon Button adjustment */
.btn i {
    margin-right: 6px;
    font-size: 0.9em;
    /* Relative to button font size */
}


/* ==========================================================================
   2. Navigation Bar (Keep existing styles)
   ========================================================================== */

.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
}

.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

/* Add active class style for nav links */
.nav-links a.active {
    color: var(--white);
    font-weight: 500;
    /* Make active link slightly bolder */
}

/* Style for active dropdown button */
.nav-links .dropbtn.active {
    color: var(--white);
    font-weight: 500;
}

/* Style for active link within dropdown */
.dropdown-content a.active {
    color: var(--primary-color);
    /* Highlight color */
    background-color: var(--light-bg);
    /* Light background */
    font-weight: 500;
}


.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* ==========================================================================
   3. Main Content Area & Common Page Elements
   ========================================================================== */

main {
    min-height: calc(100vh - 110px - 250px);
    /* Viewport height - navbar height - approx footer height */
    /* Removed top padding as map section might go full width */
    padding-bottom: 60px;
}

.page-content {
    /* Optional: Add general padding or styles for the main content area */
}

/* Hero Image for Inner Pages */
.hero-image {
    height: 350px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    /* Space below hero image */
    position: relative;
    /* For potential overlay/text */
}

/* Optional Hero Overlay */
.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Example overlay */
}

/* Optional Hero Title */
.hero-image .hero-title-container {
    position: relative;
    /* To sit above overlay */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Center text */
}

.hero-image .hero-title-container h1 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    margin: 0;
    padding: 0 15px;
    /* Add padding for smaller screens */
}


/* Intro Section Styling (Used on multiple pages) */
.intro-section {
    padding: 20px 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    /* Center align */
}

.intro-section h2 {
    font-size: 1.9rem;
    /* Slightly larger */
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    /* Remove bottom margin if it's the last element */
    line-height: 1.7;
}

/* Page Title Section (Used on Contact page based on image) */
.page-title-section {
    text-align: center;
    margin-bottom: 50px;
    /* Space below titles */
    margin-top: 20px;
    /* Space above titles if no hero image */
}

.page-title-main {
    font-size: 2.8rem;
    /* Larger main title */
    color: #aaa;
    /* Lighter color like image */
    font-weight: 400;
    /* Lighter weight */
    margin-bottom: 0.2em;
    margin-top: 0;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.8rem;
    /* Smaller subtitle */
    font-weight: 600;
    margin-bottom: 0.8em;
    margin-top: 0;
}

.page-description {
    max-width: 700px;
    /* Limit width of description */
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}


/* ==========================================================================
   4. Footer (Keep existing styles)
   ========================================================================== */

.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}


/* ==========================================================================
   5. Responsive Media Queries (Keep existing queries for Nav/Footer)
   ========================================================================== */

/* --- Medium Devices --- */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }

    .page-title-main {
        font-size: 2.4rem;
    }

    .page-subtitle {
        font-size: 1.6rem;
    }
}


/* --- Small Devices --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        display: block;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link in mobile dropdown */
    .dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        font-weight: 500;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }

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

    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }

    .intro-section {
        padding: 10px 0;
    }

    .page-title-main {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.4rem;
    }

    .page-title-section {
        margin-bottom: 30px;
    }
}


/* --- Desktop Styles Refinements --- */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--dark-bg) !important;
        /* Reverted to dark */
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
        padding: 10px 15px !important;
        text-align: left !important;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    /* Active link hover in desktop dropdown */
    .dropdown-content a.active {
        color: var(--primary-color) !important;
        background-color: var(--light-bg) !important;
    }

    /* Reverted active style */
    .dropdown-content a.active:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ==========================================================================
   6. Page Specific Styles (Add below this line)
   ========================================================================== */

/* --- Activity List Styles --- */
.activity-list {
    margin-top: 30px;
}

.activity-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-card header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.activity-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.activity-card footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-card .activity-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* --- Activity Categories Grid Styles --- */
.activity-categories {
    margin-top: 40px;
    text-align: center;
}

.activity-categories h2 {
    margin-bottom: 30px;
}

.activity-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.activity-category-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.activity-category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.activity-category-item h3 {
    font-size: 1.3rem;
    margin: 15px 20px 10px 20px;
}

.activity-category-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.activity-category-item .btn {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
}

/* --- Rates Table Styles --- */
.rates-table-section {
    margin-top: 30px;
}

.rates-table-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.rates-table th,
.rates-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

.rates-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rates-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.rates-table tbody tr:hover {
    background-color: #f0f0f0;
}

.rates-table td:nth-child(n+2) {
    text-align: right;
}

.rates-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* --- Special Offers Styles --- */
.offers-section {
    margin-top: 30px;
}

.offer-placeholder {
    border: 1px dashed var(--border-color);
    padding: 30px;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 5px;
    color: #666;
}

.offer-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

.offer-placeholder p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

/* Example offer card styles */
.offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.offer-validity {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.offer-content p {
    margin-bottom: 20px;
    color: #555;
}

.offer-content .btn {
    align-self: flex-start;
}



/* --- Individual Room Detail Styles --- */
.room-details-section {
    margin-top: 30px;
}

.room-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.room-gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Adjust minmax for desired size */
    gap: 15px;
}

.room-gallery-page-item img {
    border: 1px solid #eee;
    background-color: var(--light-bg);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    height: 250px;
    /* Fixed height for grid items */
    object-fit: cover;
}

.room-gallery-page-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.room-gallery img {
    margin-bottom: 25px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.room-gallery h2,
.room-info h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.room-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #444;
    font-size: 0.9rem;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.room-amenities li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.room-amenities i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.room-amenities strong {
    margin-right: 5px;
}

hr.room-divider {
    margin: 30px 0;
    border-color: #e5e5e5;
}

.room-availability .form-group.input-with-icon {
   width: 50%;
}

.room-availability button {
    width: 100%;
    margin-top: 10px;
}

.availability-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

/* --- Location Page Styles --- */
.map-section {
    margin: 0;
    padding: 0;
}

.map-embed.full-width-map iframe {
    display: block;
    width: 100%;
    border: none;
}

.directions-section {
    padding: 40px 0;
}

.directions-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.directions-text {
    max-width: 800px;
    margin: 0 auto;
}

.directions-text p {
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #555;
    line-height: 1.7;
}

.directions-text li {
    margin-bottom: 0.5em;
}

.directions-text strong {
    color: var(--text-color);
}

/* --- Contact Page Styles --- */
.contact-section {
    margin-top: 0px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-container h3,
.contact-details-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #555;
}

.contact-form label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d5d5;
    border-radius: 0px;
    font-family: var(--sans-serif-font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

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

.contact-form .form-group-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group-row .form-group {
    flex: 1;
}

.contact-form button[type="submit"] {
    width: auto;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.contact-details p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.contact-details i {
    width: 20px;
    text-align: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details a {
    color: var(--primary-color);
    word-break: break-word;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details hr {
    margin: 25px 0;
    border-color: #eee;
}

.contact-details .address-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-left: 35px;
}

.find-us-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.find-us-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.find-us-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.find-us-section .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
}

/* --- Gallery Page Styles --- */
.gallery-page-section {
    margin-top: 30px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Adjust minmax for desired size */
    gap: 15px;
}

.gallery-page-item img {
    border: 1px solid #eee;
    background-color: var(--light-bg);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    height: 250px;
    /* Fixed height for grid items */
    object-fit: cover;
}

.gallery-page-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Lightbox Styles --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Add transition */
}

/* Add 'show' class via JS to trigger transition */
.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-image {
    display: block;
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #ccc;
}


/* --- Responsive adjustments --- */
@media (min-width: 768px) {

    /* Location Page: Remove grid layout */
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    .contact-form button[type="submit"] {
        width: auto;
    }

    /* Offer Cards */
    .offer-card {
        flex-direction: row;
    }

    .offer-card img {
        width: 40%;
        height: auto;
        min-height: 250px;
    }

    .offer-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Individual Room */
    .room-details-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .room-availability {
        flex-direction: row;
    }

    .room-availability .form-group.input-with-icon {
        flex: 1 1 180px;
    }

    .room-availability button {
        width: auto;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
        float: left;
    }

    .availability-note {
        text-align: center;
    }
}

@media (min-width: 992px) {

    /* Location Page: Remove grid layout */
    .contact-grid {
        gap: 50px;
    }

    .room-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    /* Activity Cards */
    .activity-card footer {
        flex-direction: column;
        align-items: flex-start;
    }

    */ .activity-card .activity-btn {
        width: 100%;
        text-align: center;
    }

    /* Activity Categories */
    .activity-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-category-item img {
        height: 200px;
    }

    /* Rates Table */
    .rates-table th,
    .rates-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .rates-table th {
        font-size: 0.8rem;
    }

    /* Offer Cards */
    .offer-card img {
        height: 200px;
    }

    /* Room Cards */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Individual Room Details */
    .room-gallery h2,
    .room-info h2 {
        font-size: 1.6rem;
    }

    .contact-form .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form button[type="submit"] {
        width: 100%;
    }

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

    .gallery-page-item img {
        height: 150px;
    }

    .lightbox-close {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
}


/* --- Add other page-specific styles below --- */