/* Experiences 2025 - Premium Design */

:root {
    --primary-2025: #0A3D0F;
    --secondary-2025: #0077B6;
    --accent-2025: #D4A017;
    --festival-gold: #FFD700;
    --spa-teal: #20B2AA;
    --culinary-red: #8B0000;
    --text-dark: #111111;
    --text-light: #F9F9F9;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Global Enhancements */
body {
    background-color: #F4F7F5;
    overflow-x: hidden;
}

/* Updates Ticker */
.updates-ticker {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--primary-2025);
    color: white;
    z-index: 900;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Hero Section (Carousel) */
.hero-supercharged {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar */
}

.hero-carousel::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    scroll-snap-align: start;
}

.hero-video-bg,
.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-super {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-title-super {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-super {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Quick Plan Mega-Dropdown */
.quick-plan-container {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 90%;
    max-width: 1000px;
}

.quick-plan-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
}

/* Main Layout (Hybrid Dashboard) */
.main-layout-super {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 2rem;
    max-width: 1800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.sidebar-dashboard,
.sidebar-buzz {
    position: sticky;
    top: 140px;
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Experience Clusters (Accordions) */
.cluster-section {
    margin-bottom: 3rem;
}

.cluster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.cluster-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-2025);
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Super Cards */
.card-super {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-super:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-thumb-super {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-tabs {
    display: flex;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.card-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
}

.card-tab:hover {
    background: rgba(10, 61, 15, 0.05);
}

.card-tab:active {
    background: rgba(10, 61, 15, 0.1);
    transform: scale(0.98);
}

.card-tab.active {
    color: var(--primary-2025);
    background: white;
    border-bottom: 2px solid var(--primary-2025);
}

.card-body-super {
    padding: 1.5rem;
}

/* Modules */
.festival-banner {
    background: linear-gradient(135deg, #000, #333);
    color: var(--festival-gold);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.spa-module {
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.culinary-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.culinary-card {
    min-width: 250px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer Fortress */
.footer-fortress {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-grid-super {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.hero-overlay-super {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-title-super {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-super {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Quick Plan Mega-Dropdown */
.quick-plan-container {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 90%;
    max-width: 1000px;
}

.quick-plan-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
}

/* Main Layout (Hybrid Dashboard) */
.main-layout-super {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 2rem;
    max-width: 1800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.sidebar-dashboard,
.sidebar-buzz {
    position: sticky;
    top: 140px;
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Experience Clusters (Accordions) */
.cluster-section {
    margin-bottom: 3rem;
}

.cluster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.cluster-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-2025);
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Super Cards */
.card-super {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-super:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-thumb-super {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-tabs {
    display: flex;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.card-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
}

.card-tab:hover {
    background: rgba(10, 61, 15, 0.05);
}

.card-tab:active {
    background: rgba(10, 61, 15, 0.1);
    transform: scale(0.98);
}

.card-tab.active {
    color: var(--primary-2025);
    background: white;
    border-bottom: 2px solid var(--primary-2025);
}

.card-body-super {
    padding: 1.5rem;
}

/* Modules */
.festival-banner {
    background: linear-gradient(135deg, #000, #333);
    color: var(--festival-gold);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.spa-module {
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.culinary-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.culinary-card {
    min-width: 250px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer Fortress */
.footer-fortress {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-grid-super {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive & Mobile Optimizations */
@media (max-width: 1400px) {
    .main-layout-super {
        grid-template-columns: 250px 1fr;
    }

    .sidebar-buzz {
        display: none;
    }
}

@media (max-width: 1000px) {
    .main-layout-super {
        grid-template-columns: 1fr;
    }

    .sidebar-dashboard {
        position: static;
        height: auto;
        margin-bottom: 2rem;
        display: none;
        /* Hidden by default on mobile, toggled via drawer */
    }
}

@media (max-width: 768px) {

    /* Hero Fixes */
    .hero-supercharged {
        height: 50vh;
        /* Avoid scroll-jacking */
    }

    .hero-title-super {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-video-bg {
        display: none;
        /* Save data */
    }

    .hero-slide:first-child {
        background: url('../images/28.jpg') center/cover no-repeat;
        /* Fallback */
    }

    /* Grid Fixes */
    .experience-grid,
    .cluster-grid {
        grid-template-columns: 1fr;
        /* Single column stack */
        gap: 1.5rem;
    }

    /* Sidebars to Drawers */
    .sidebar-dashboard {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        background: white;
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        overflow-y: auto;
    }

    .sidebar-dashboard.active {
        transform: translateY(0);
    }

    /* Mobile Nav Bar (Bottom) */
    body {
        padding-bottom: 80px;
        /* Space for bottom nav */
    }

    .mobile-nav-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #eee;
        z-index: 1100;
        justify-content: space-around;
        padding: 0.8rem 0;
    }

    .mobile-nav-item {
        text-align: center;
        font-size: 0.7rem;
        color: #666;
    }

    .mobile-nav-item.active {
        color: var(--primary-2025);
    }

    /* Touch Targets */
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Modal Styles (Fixed) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    /* High z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #0A3D0F;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .close {
        font-size: 1.5rem;
        top: 0.75rem;
        right: 1rem;
    }
}

/* Ensure modal is visible when displayed */
.modal[style*="display: block"] {
    display: block !important;
}

/* Smooth transitions for modal */
.modal {
    transition: opacity 0.3s ease;
}