:root {
    --primary-color: #2c3e50;
    /* Deep Blue/Slate */
    --accent-color: #d4af37;
    /* Gold/Champagne */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --light-bg: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-section: 4rem;
    --border-radius: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll from mobile menu */
}

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

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

/* Header */
header {
    background: var(--light-bg);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

#navbar a {
    font-weight: 500;
}

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

/* Close Button & Mobile Elements (Hidden on Desktop) */
.close-menu,
.mobile-book-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/studio_paris_16.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    /* Force full width overriding generic section styles */
    max-width: 100%;
    margin: 0;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Sections General */
section {
    padding: var(--spacing-section) 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 0;
}

/* Points Forts (Highlights) */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Description */
.description-content {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.description-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Amenities (Equipements) */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-category h3 {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    color: var(--primary-color);
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-list li::before {
    content: '•';
    color: var(--accent-color);
}

/* Location And Attractions */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.distance {
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design (UI/UX Pro Max) */
@media (max-width: 768px) {
    :root {
        --spacing-section: 3rem;
        /* Tighter vertical spacing */
    }

    /* Navigation */
    .nav-container {
        padding: 0.8rem 1.5rem;
        /* Reduced height */
        flex-direction: row;
        /* Keep logo and hamburger in a row */
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 45px;
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        /* Essential for z-index to work */
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    /* Hamburger Animation (X) */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white;
        /* Contrast on dark overlay */
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white;
    }

    /* [Cleaned up old fragments] */

    /* Hide the menu-inside dropdown on mobile */
    #navbar .lang-dropdown {
        display: none !important;
    }

    /* Close Button Mobile */
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 3rem;
        color: white;
        cursor: pointer;
        line-height: 1;
        transition: transform 0.3s ease;
        z-index: 10001;
        /* Above menu */
    }

    .close-menu:hover {
        transform: rotate(90deg) scale(1.1);
        color: var(--accent-color);
    }

    /* Mobile Floating Booking Button (FAB) */
    .mobile-book-btn {
        display: block;
        /* Show on mobile */
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        /* Strong floating shadow */
        z-index: 900;
        /* Above content, below Modal (1000) */
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, bottom 0.3s ease;
    }

    .mobile-book-btn.hide {
        bottom: -70px;
        /* Slide out of view */
        opacity: 0;
        pointer-events: none;
    }

    .mobile-book-btn:active {
        transform: translateX(-50%) scale(0.95);
    }

    /* Mobile Menu Overlay */
    #navbar {
        position: fixed;
        inset: 0;
        /* Force top/left/bottom/right 0 */
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-color) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        /* Click through when hidden */
        transition: opacity 0.4s ease;
        z-index: 9999;
        margin: 0;
        padding: 0;
    }

    #navbar.active {
        opacity: 1;
        pointer-events: auto;
        /* Enable clicks when visible */
    }

    #navbar ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    #navbar a {
        color: white !important;
        font-size: 1.5rem;
        font-family: var(--font-heading);
        padding: 10px 20px;
        background: transparent;
        text-decoration: none;
    }

    #navbar a:hover {
        color: var(--accent-color) !important;
    }

    /* Reserve Button in Mobile Menu */
    .btn-reserve {
        background-color: var(--accent-color);
        color: white;
        margin-top: 1rem;
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    /* Hero */
    .hero {
        padding: 0 1rem;
        height: 80vh;
        /* Better for mobile browsers */
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }



    /* Sections */
    section {
        padding: var(--spacing-section) 1.25rem;
        /* Wider horizontal space */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Grids */
    .highlights-grid,
    .amenities-grid,
    .location-grid,
    .transport-grid {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
        gap: 1.5rem;
    }

    /* Amenities Specific */
    .amenity-list li {
        font-size: 0.95rem;
    }
}

/* iPad / Tablet Specific */
@media (min-width: 768px) and (max-width: 1024px) {
    section {
        padding: var(--spacing-section) 3rem;
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols for tablet */
    }

    .transport-card:last-child {
        grid-column: span 2;
        /* Center last item if odd */
    }
}

/* Gallery Carousel (UI/UX Pro Max) */
#galerie {
    padding-bottom: 4rem;
}

/* Bento Grid (Environs Redesign) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bento-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-card:hover .bento-bg {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    /* Darker gradient for better text contrast */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bento-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.bento-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 0.2rem;
    display: flex;
    justify-content: space-between;
    color: #f0f0f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.distance-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    text-shadow: none;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    /* Wider for cinematic feel */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    /* Smooth corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Deep premium shadow */
    aspect-ratio: 16/9;
    /* Enforce cinematic ratio */
}

.carousel-slide {
    display: none;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Mask the zooming image */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: cinematicZoom 8s ease-out forwards;
    /* Ken Burns effect */
}

/* Cinematic Zoom Animation */
@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Glassmorphism Navigation */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    /* Circle buttons */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    /* Frosted glass */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover,
.next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    /* Subtle grow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Refined Dots */
.dots-container {
    text-align: center;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    cursor: pointer;
    height: 4px;
    /* Sleek lines instead of circles */
    width: 20px;
    background-color: #d1d5db;
    /* Neutral gray */
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active,
.dot:hover {
    background-color: var(--accent-color);
    /* Gold */
    width: 35px;
    /* Expand active dot */
}

/* Fade Transition for Slides */
.fade {
    animation-name: fade;
    animation-duration: 1.2s;
    /* Slower, smoother fade */
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

/* Transport Section */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .transport-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.transport-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.transport-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.transport-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.transport-steps {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    list-style: none;
    padding: 0;
}

.transport-steps li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.transport-steps li i {
    color: var(--accent-color);
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

/* Booking Feature */
.btn-reserve {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-reserve:hover {
    background-color: #c09d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Styling */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Flexbox centering */
    align-items: center;
    justify-content: center;
}

.modal-overlay.modal-open {
    opacity: 1;
    display: flex;
    /* Activate flex when open */
}

.modal-content {
    background-color: #fefefe;
    margin: 0;
    /* Removing auto margins because of flex */
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-open .modal-content {
    transform: scale(1);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    margin-right: 15px;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.booking-btn img {
    height: 24px;
    margin-right: 12px;
}

.booking-btn:hover {
    background: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking-btn strong {
    font-size: 1.1rem;
}

/* Hide Hamburger on Desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* Language Switcher */
.lang-switch {
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 14px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
    padding: 6px 14px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}

.lang-dropdown span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 80px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    margin-top: 5px;
    text-align: center;
    overflow: hidden;
}

.lang-dropdown-content a {
    color: var(--primary-color) !important;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.lang-dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--accent-color) !important;
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* Language Dropdown Mobile Support */
.lang-dropdown.active .lang-dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .lang-dropdown {
        margin-left: 0;
        margin-top: 10px;
    }

    .lang-dropdown-content {
        position: relative;
        /* Expand inline on mobile */
        top: 0;
        left: 0;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.1);
        /* Slight active background */
        border-radius: 8px;
        width: 100%;
        min-width: 100px;
    }

    .lang-dropdown.active .lang-dropdown-content {
        animation: none;
        /* No fancy animation needed on mobile inline */
    }

    .lang-dropdown-content a {
        color: white !important;
        padding: 15px;
        font-size: 1.2rem;
    }

    .lang-dropdown-content a:hover {
        background: transparent;
        color: var(--accent-color) !important;
    }
}

/* Default Desktop State for Mobile Switcher */
.mobile-lang-switch {
    display: none;
}

/* Footer Lang Desktop Hide */
.footer-lang {
    display: none;
}

@media (max-width: 768px) {
    .footer-lang {
        display: block;
    }
}

/* Desktop Hover Language Dropdown */
@media (min-width: 769px) {
    .lang-dropdown:hover .lang-dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    /* Add slight offset bridge so mouse doesn't lose focus */
    .lang-dropdown-content::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
    }
}

/* =========================================
   LANGUAGE SWITCHER REFACTOR (FINAL FIX)
   ========================================= */

/* 1. Reset Base Behavior */
.lang-dropdown {
    position: relative;
    /* Anchor for absolute dropdown */
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    /* Match navbar height */
}

/* 2. Dropdown Content (Hidden by Default) */
.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    /* Directly below parent */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    z-index: 2000;
}

/* 3. Dropdown Links */
.lang-dropdown-content a {
    display: block;
    color: var(--primary-color) !important;
    font-size: 1rem;
    padding: 5px 0;
    transition: color 0.2s;
}

.lang-dropdown-content a:hover {
    color: var(--accent-color) !important;
}

/* 4. Desktop Hover Logic (Min Width 769px) */
@media (min-width: 769px) {

    /* Show on Hover */
    .lang-dropdown:hover .lang-dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    /* Transparent Bridge to prevent closing */
    .lang-dropdown::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px;
        /* Extend hit area downwards */
        transform: translateY(100%);
    }
}

/* 5. Mobile Override (Max Width 768px) */
@media (max-width: 768px) {

    /* Hide the logic inside the menu completely */
    #navbar .lang-dropdown {
        display: none !important;
    }

    /* Ensure Footer Lang is Visible */
    .footer-lang {
        display: block;
        margin-top: 1.5rem;
    }
}
/* Availability Checker Section */
.availability-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f6 100%);
    padding: 4rem 0;
    margin: 0;
}


/* Full width for availability section background */
.availability-section {
    max-width: 100%;
    text-align: center;
}

.availability-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.availability-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-group input[type="date"] {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.input-group input[type="date"]:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-check-availability {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-check-availability:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-check-availability i {
    font-size: 1.3rem;
}

.availability-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.availability-result i {
    font-size: 3rem;
}

.availability-result.available {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.availability-result.available i {
    color: #4caf50;
}

.availability-result.unavailable {
    background: #ffebee;
    border: 2px solid #ef5350;
    color: #c62828;
}

.availability-result.unavailable i {
    color: #ef5350;
}

.availability-result.error {
    background: #fff3e0;
    border: 2px solid #ff9800;
    color: #e65100;
}

.availability-result.error i {
    color: #ff9800;
}

.availability-result.loading {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    color: #1565c0;
}

.availability-result.loading i {
    color: #2196f3;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.conflicts-list {
    margin-top: 1rem;
    text-align: left;
    width: 100%;
}

.conflicts-list ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.conflicts-list li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.btn-reserve-now {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve-now:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .availability-form {
        padding: 2rem 1.5rem;
    }
    
    .btn-check-availability {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Make date inputs look clickable */
input[type="date"] {
    cursor: pointer;
}

/* FULL WIDTH CLICKABLE DATE INPUT */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ===== Homepage Activities Section ===== */
.activity-card-home {
    display: block;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.activity-home-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.activity-home-content {
    padding: 1.2rem;
}

.activity-home-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.activity-home-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #2980b9;
    font-weight: 500;
}

@media (max-width: 768px) {
    #latest-activities-section {
        padding: 2rem 1rem !important;
    }
}
