/* =========================================
   BLUE HEAVEN LUXURY - MASTER THEME vFINAL (OPTIMIZED & SECURE)
   ========================================= */

/* --- 1. GLOBAL VARIABLES --- */
:root {
    /* BRAND COLORS */
    --primary: #003366;       /* Deep Royal Blue */
    --primary-dark: #002244;  
    --gold: #FFC107;          /* Luxury Gold Accent */
    --gold-hover: #e0a800;
    --blue-glow: #00f2ff;     /* The "Energy" Glow */
    
    /* FUNCTIONAL COLORS */
    --success: #25D366;       /* WhatsApp Green */
    --text-dark: #212121;     
    --text-grey: #666666;     
    --bg-light: #f4f7f6;      
    --white: #ffffff;
    
    /* LAYOUT & EFFECTS */
    --header-height: 80px;
    --radius: 12px;           
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 30px rgba(0,0,0,0.15);
    --font-main: 'Lato', sans-serif;
    --font-head: 'Playfair Display', serif;
}

/* --- 2. RESET, BASE & SECURITY --- */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body { 
    font-family: var(--font-main); 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    overflow-x: hidden; 
    line-height: 1.6;
    padding-top: 0; 
    margin: 0;

    /* SECURITY: Anti-Copy / Anti-Highlight for frontend */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow typing in forms */
input, textarea, select {
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* Add spacing for internal pages that usually don't have a video */
body:not(:has(.hero-section)) {
    padding-top: 80px; 
}

img { max-width: 100%; height: auto; display: block; backface-visibility: hidden; }
video { will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }


/* --- 3. LUXURY HEADER (TRANSPARENT FIX) --- */
.luxury-header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: var(--header-height);
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0 20px;
    transition: all 0.4s ease;
}

/* JS adds this class on scroll to turn it Solid Blue */
.luxury-header.scrolled {
    background: #003366; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    height: 70px;
}

.header-flex {
    width: 100%; 
    max-width: 1250px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

/* Logo */
.brand-logo { 
    font-family: var(--font-head); 
    font-size: 24px; 
    color: white; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700;
    display: flex; 
    align-items: center; 
    gap: 10px;
}
.brand-logo i { color: var(--gold); }
.brand-logo span { color: var(--gold); }


/* --- 4. RESPONSIVE NAVIGATION --- */

/* Desktop Mode */
@media (min-width: 1025px) {
    .mobile-toggle { display: none; }
    
    .nav-links { 
        display: flex; 
        gap: 30px; 
        align-items: center; 
    }
    
    .nav-links a { 
        color: rgba(255,255,255,0.95); 
        font-size: 14px; 
        font-weight: 600; 
        text-transform: uppercase; 
        letter-spacing: 0.5px;
        position: relative;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Make text readable over video */
    }
    
    /* Hover Underline */
    .nav-links a::after {
        content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
        background: var(--gold); transition: 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown-menu {
        position: absolute; top: 100%; left: 0;
        background: white; min-width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 4px; padding: 10px 0;
        opacity: 0; visibility: hidden; transform: translateY(10px);
        transition: 0.3s;
    }
    .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    
    .dropdown-menu a {
        display: block; padding: 10px 20px;
        color: #333 !important; font-size: 14px; text-transform: none;
        border-bottom: 1px solid #eee;
        text-shadow: none;
    }
    .dropdown-menu a:hover { background: #f9f9f9; color: var(--primary) !important; }
}

/* Mobile/Tablet Mode */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: #003366; /* Solid Blue Drawer */
        flex-direction: column;
        justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links a { 
        font-size: 1rem; 
        margin: 10px 0; 
        color: white; 
        display: block; 
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static; 
        background: rgba(255,255,255,0.1); 
        width: 100%;
        display: none; 
        opacity: 1; visibility: visible; transform: none;
    }
    
    .mobile-toggle { 
        display: block; 
        color: white; 
        font-size: 1.8rem; 
        z-index: 1000; 
        cursor: pointer; 
        transition: transform 0.3s ease;
    }
    .mobile-toggle:active {
        transform: scale(0.85);
    }
}


/* --- 4. HERO SECTION (FOOLPROOF FULL SCREEN FIX) --- */
.hero-section {
    position: relative !important;
    height: 100vh !important; 
    width: 100vw !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force ALL hero images and videos to stretch perfectly */
.hero-section video,
.hero-section img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Stretches without squishing */
    z-index: 0 !important;
    opacity: 0.6 !important;
    transform: translateZ(0) !important; /* Use GPU */
    will-change: transform, opacity !important;
    margin: 0 !important;
    max-width: none !important; /* Overrides the default HTML limits */
}

.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)) !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: white !important;
    padding: 20px !important;
    width: 100% !important;
    max-width: 900px !important;
    margin-top: 60px !important; /* Pushes content down slightly past header */
}

/* Dynamic Font Sizing for Mobile & Laptop Hero */
.hero-title {
    font-family: var(--font-head) !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8) !important;
}

.hero-subtitle {
    display: block !important;
    font-size: clamp(12px, 3vw, 14px) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: var(--gold) !important;
    margin-bottom: 10px !important;
    font-weight: bold !important;
}

/* --- 6. SECTIONS --- */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 10px;
}
.section-title p { color: var(--text-grey); max-width: 600px; margin: 0 auto; font-size: clamp(0.9rem, 3vw, 1.1rem); }

/* Feature Grid */
.why-us-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    text-align: center; 
}
.feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }

/* Gallery Strip */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-top: 50px; }
.gallery-strip img { 
    width: 100%; height: 200px; object-fit: cover; 
    transition: 0.3s; cursor: pointer; 
}
.gallery-strip img:hover { transform: scale(1.05); z-index: 2; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
@media(max-width: 768px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }


/* --- 7. CARDS (NEW HYBRID "DEEP" DESIGN) --- */
.cards-container {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; 
    padding-bottom: 40px;
    justify-content: center;
}

.deal-card {
    background: var(--white); 
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm); 
    transition: all 0.4s ease;
    overflow: hidden; 
    display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05); 
    position: relative;
}
.deal-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
    border-color: var(--gold);
}

.card-img { height: 220px; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.deal-card:hover .card-img img { transform: scale(1.1); }

.card-badge { 
    position: absolute; top: 15px; left: 15px; 
    background: var(--primary); color: white; 
    padding: 5px 10px; border-radius: 4px; 
    font-size: 11px; font-weight: bold; 
    z-index: 2; text-transform: uppercase;
}

.card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }

.card-title { font-family: var(--font-head); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 5px; }

/* Hybrid Additions: Meta and Snippet for "Thrill Thirsty" style depth */
.card-meta { display: flex; gap: 10px; font-size: 12px; color: var(--primary); font-weight: bold; margin-bottom: 8px; }
.card-meta i { color: var(--gold); }
.card-snippet { font-size: 13px; color: var(--text-grey); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; }

.feature-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 15px; }
.feature-pills span { 
    font-size: 11px; background: #f4f4f4; 
    padding: 4px 8px; border-radius: 4px; color: var(--primary-dark); font-weight: 600;
}

/* PRICING ROW */
.card-footer {
    margin-top: auto; 
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #eee; padding-top: 15px;
}

.price-block { display: flex; flex-direction: column; }
.price-block .price { 
    font-size: 1.5rem; font-weight: 800; color: #212121; line-height: 1.2; 
}

.price-row-bottom { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; margin-top: 2px;}
.price-block .mrp { text-decoration: line-through; color: #878787; font-size: 0.85rem; }
.price-block .discount { color: #d32f2f; font-weight: 700; font-size: 12px; background: #ffebee; padding: 2px 6px; border-radius: 4px; }

.btn-book-card {
    padding: 12px 24px; 
    background: var(--gold);
    color: var(--primary-dark); font-weight: 800; 
    border-radius: 6px; font-size: 14px; 
    border: none; cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}
.deal-card:hover .btn-book-card { background: var(--primary); color: white; transform: scale(1.05); box-shadow: 0 8px 20px rgba(0, 51, 102, 0.4); }


/* --- 8. FOOTER (LUXURY STYLE) --- */
.luxury-footer {
    background: #0b0b0b; 
    color: #ccc; 
    padding: 70px 0 0; 
    border-top: 4px solid var(--primary);
    font-size: 14px;
}

.footer-col h4 {
    color: white; 
    font-family: var(--font-head); 
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 8px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }

.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold); color: black;
    transition: 0.3s;
}
.social-icons a:hover { transform: translateY(-3px); background: white; }


/* --- 9. MOBILE SPECIFIC OVERRIDES (SHRINKING TEXT & CARDS) --- */
@media (max-width: 768px) {
    /* Container spacing */
    .container { padding: 40px 15px; }
    
    /* Shrinking the Cards */
    .cards-container { grid-template-columns: minmax(auto, 320px); justify-content: center; gap: 20px; }
    .card-img { height: 180px; } /* Smaller images */
    .card-body { padding: 15px; } /* Less bulky padding */
    .card-title { font-size: 1.1rem; }
    .card-snippet { font-size: 12px; margin-bottom: 10px; }
    .price-block .price { font-size: 1.3rem; }
    .btn-book-card { padding: 8px 15px; font-size: 12px; }

    /* Sticky Bar Handling */
    body { padding-bottom: 60px !important; } 
    .mobile-sticky-bar {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
        background: white; box-shadow: 0 -4px 15px rgba(0,0,0,0.15); 
        z-index: 9999; padding: 10px; gap: 10px; height: 60px; box-sizing: border-box;
    }
    .sticky-btn {
        flex: 1; padding: 0; border-radius: 6px; font-weight: 700; 
        font-size: 14px; text-transform: uppercase; display: flex; 
        align-items: center; justify-content: center; gap: 8px;
        height: 100%; text-decoration: none;
    }
    .btn-call { background: var(--primary); color: white !important; }
    .btn-whatsapp { background: var(--success); color: white !important; }
    .luxury-footer { padding-bottom: 20px; }

    /* Mobile Dropdown Fix */
    .dropdown-menu {
        position: static !important; 
        background: transparent !important; 
        box-shadow: none !important;
        padding-left: 20px; 
        display: none; 
    }
    .dropdown-menu a {
        color: white !important; 
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (min-width: 769px) { .mobile-sticky-bar { display: none; } }


/* --- 10. BOOKING MODAL --- */
#booking-modal { 
    display: none; 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 10000; 
    justify-content: center; align-items: center; 
    backdrop-filter: blur(5px);
}
.modal-content { 
    background: white; padding: 30px; border-radius: 12px; 
    width: 90%; max-width: 400px; 
    position: relative; text-align: center; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease-out;
}
.close-modal { 
    position: absolute; top: 15px; right: 15px; 
    background: none; border: none; font-size: 24px; cursor: pointer; color: #999; 
}
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { font-size: 12px; font-weight: bold; display: block; margin-bottom: 5px; }
.form-group input, .form-group select { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; 
}
.btn-whatsapp-confirm { width: 100%; padding: 12px; background: var(--success); color: white; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; margin-top: 10px; }


/* --- 11. ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@keyframes bouncePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.btn-whatsapp, .cms-wa-link, .btn-whatsapp-confirm { animation: bouncePulse 2s infinite; }
.btn-gold, .btn-book-card { animation: glowPulse 2.5s infinite; }

.fade-in { animation: fadeInUp 0.8s ease-out forwards; }

/* --- COMPONENTS MOVED FROM INDEX.HTML --- */
/* --- 1. HERO BUTTONS & ANIMATIONS --- */
        .hero-btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; margin-bottom: 50px; }
        
        .hero-btn {
            padding: 16px 45px; font-size: 1.1rem; font-weight: 800; border-radius: 50px;
            text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease;
            text-decoration: none; position: relative; overflow: hidden;
        }
        
        .btn-gold {
            background: var(--gold); color: var(--primary-dark);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4); border: 2px solid var(--gold);
        }
        .btn-gold:hover { transform: translateY(-5px); background: transparent; color: var(--gold); }
        
        .btn-glass {
            background: rgba(0, 0, 0, 0.4); color: white; border: 2px solid white; backdrop-filter: blur(5px);
        }
        .btn-glass:hover { background: white; color: var(--primary-dark); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3); }

        /* Animated Scroll Mouse */
        .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; color: white; opacity: 0.8; z-index: 2; }
        .mouse { width: 26px; height: 40px; border: 2px solid white; border-radius: 20px; margin: 0 auto 8px; position: relative; }
        .mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 6px; background: var(--gold); border-radius: 50%; animation: scrollWheel 2s infinite; }
        .scroll-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; }
        @keyframes scrollWheel { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }

        @media (max-height: 750px) {
            .scroll-indicator { display: none; }
            .hero-btn-group { margin-bottom: 20px; }
        }

        /* --- 2. THE STORYTELLING GRID --- */
        .story-section { padding: 120px 20px; background: white; }
        .story-container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1250px; margin: 0 auto; }
        .sub-heading { color: var(--gold); font-weight: 800; letter-spacing: 4px; text-transform: uppercase; font-size: 13px; margin-bottom: 15px; display: block; }
        .welcome-title { font-family: 'Playfair Display'; font-size: clamp(2.5rem, 4vw, 4rem); color: var(--primary); margin-bottom: 25px; font-weight: 900; line-height: 1.1; }
        .welcome-text { font-size: 1.15rem; line-height: 1.9; color: #555; margin-bottom: 30px; }
        
        .story-quote { 
            font-family: 'Playfair Display'; font-size: 1.6rem; color: var(--primary); font-style: italic; 
            padding: 30px; background: #f9fbff; border-left: 6px solid var(--gold); border-radius: 0 12px 12px 0; margin-top: 30px; line-height: 1.5;
        }

        .story-image-wrapper { position: relative; }
        .story-img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); transition: transform 0.5s; }
        .story-image-wrapper:hover .story-img { transform: scale(1.02); }
        .experience-badge { 
            position: absolute; bottom: -30px; left: -30px; background: var(--gold); color: var(--primary-dark); 
            padding: 25px 30px; font-weight: 900; font-family: 'Playfair Display'; font-size: 1.4rem; 
            border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); line-height: 1.2; text-align: center;
        }

        /* --- 3. TRUST & LEGACY BANNER --- */
        .trust-banner { background: #0b0b0b; border-top: 4px solid var(--primary); border-bottom: 4px solid var(--gold); padding: 80px 20px; }
        .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; max-width: 1250px; margin: 0 auto; text-align: center; }
        .trust-item { transition: transform 0.3s; padding: 20px; border-radius: 8px; }
        .trust-item:hover { transform: translateY(-10px); background: rgba(255,255,255,0.02); }
        .trust-item i { font-size: 3.5rem; color: var(--gold); margin-bottom: 25px; transition: 0.3s; }
        .trust-item:hover i { color: white; transform: scale(1.1); }
        .trust-item h3 { font-family: 'Playfair Display'; font-size: 1.8rem; color: white; margin-bottom: 12px; }
        .trust-item p { color: #aaa; font-size: 1rem; line-height: 1.7; }

        /* --- 4. CINEMATIC PARALLAX --- */
        .parallax-story { 
            background: linear-gradient(rgba(0,34,68,0.85), rgba(0,0,0,0.85)), url('assets/images/gallery/pics/rafting-12km.jpg') center/cover fixed; 
            padding: 150px 20px; text-align: center; color: white; 
        }
        .parallax-story h2 { font-family: 'Playfair Display'; font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 25px; text-shadow: 0 5px 20px rgba(0,0,0,0.8); font-weight: 900;}
        .parallax-story p { font-size: 1.25rem; line-height: 1.9; color: #ddd; max-width: 850px; margin: 0 auto; }

        /* Grid Headers */
        .section-bg { background: #f4f6f8; padding: 100px 20px; }
        .cards-header { display: flex; justify-content: space-between; align-items: end; max-width: 1250px; margin: 0 auto 50px; border-bottom: 2px solid #ddd; padding-bottom: 20px;}
        .view-all-link { color: var(--primary); font-weight: bold; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 4px; transition: 0.3s; text-transform: uppercase; font-size: 14px;}
        .view-all-link:hover { color: var(--gold); border-color: var(--primary); letter-spacing: 1px;}

        /* Events & Culture Section */
        .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1250px; margin: 0 auto; }
        .event-card { position: relative; height: 420px; border-radius: 12px; overflow: hidden; cursor: pointer; display: block; box-shadow: var(--shadow-sm); }
        .event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, filter 0.5s; }
        .event-card:hover img { transform: scale(1.1); filter: brightness(0.7); }
        .event-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4), transparent); color: white; transition: 0.3s;}
        .event-card:hover .event-overlay { padding-bottom: 50px; }

        /* Blog / Journal Section */
        .journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1250px; margin: 0 auto; }
        a.journal-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.4s; display: block; text-decoration: none; color: inherit; border: 1px solid #eee;}
        a.journal-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--gold);}
        .j-img { height: 240px; width: 100%; object-fit: cover; transition: 0.4s;}
        a.journal-card:hover .j-img { filter: brightness(1.1); }
        .j-body { padding: 30px; }
        .j-date { color: #888; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; font-weight: bold;}
        .j-title { font-family: 'Playfair Display'; font-size: 1.5rem; margin: 0 0 15px 0; color: var(--primary); line-height: 1.4; font-weight: bold;}
        .j-link { color: var(--gold); font-weight: 900; text-decoration: none; font-size: 0.95rem; text-transform: uppercase; display: flex; align-items: center; gap: 8px;}
        a.journal-card:hover .j-link { gap: 12px; }

        @media(max-width: 900px) {
            .story-container { grid-template-columns: 1fr; }
            .experience-badge { bottom: -20px; left: 20px; padding: 15px 20px; font-size: 1.1rem; }
            .story-quote { margin-top: 20px; }
        }
        @media(max-width: 768px) {
            .cards-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .event-card { height: 350px; }
            .parallax-story { background-attachment: scroll; padding: 100px 20px; }
            .hero-btn-group { flex-direction: column; width: 100%; padding: 0 20px; }
            .hero-btn { width: 100%; text-align: center; }
        }
