/* 1. GLOBAL SETTINGS & VARIABLES */
:root {
    --neon: #ff0055;
    --bg: #050505;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 130px; 
}
body { background: var(--bg); color: #fff; font-family: 'Inter', sans-serif; line-height: 1.6; }

/* 2. NAVIGATION */
#main-nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1100px; padding: 1rem 2rem;
    background: var(--glass); backdrop-filter: blur(15px);
    border: 1px solid var(--border); border-radius: 50px;
    display: flex; justify-content: space-between; align-items: center; z-index: 1000;
}
.nav-logo { height: 40px; width: auto; object-fit: contain; filter: brightness(1.1); transition: 0.4s ease; display: block; }
.logo-link { display: flex; align-items: center; text-decoration: none; min-width: 150px; }
.nav-links a { color: #fff; text-decoration: none; margin-left: 1.5rem; font-weight: 600; font-size: 0.85rem; position: relative; transition: 0.3s; }
.nav-links a:hover { color: var(--neon); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--neon); transition: 0.3s; box-shadow: 0 0 10px var(--neon); }
.nav-links a:hover::after { width: 100%; }

/* 3. HERO SECTION */
.hero-section { height: 100vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #000; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.5; }
.hero-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0) 50%, rgba(5,5,5,1) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 10; }
.hero-logo-main { max-width: 600px; width: 90%; height: auto; filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.4)); }
.subtitle { font-size: 1.2rem; color: #ccc; margin-bottom: 2.5rem; letter-spacing: 1px; }

/* 4. BUTTONS */
.btn-primary { background: var(--neon); color: #fff; padding: 1rem 2rem; border-radius: 12px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; border: 1px solid transparent; }
.btn-secondary { border: 1px solid #fff; color: #fff; padding: 1rem 2rem; border-radius: 12px; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background: #fff; color: #000 !important; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: var(--neon); border-color: var(--neon); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3); }

/* 5. GENERAL SECTION STYLING */
.section { padding: 8rem 10% 4rem; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; letter-spacing: 2px; color: #fff; }
.eyebrow { display: block; text-transform: uppercase; color: var(--neon); letter-spacing: 3px; font-size: 0.8rem; font-weight: 900; margin-bottom: 0.5rem; }

/* 6. WILD CARD SECTION */
.wildcard-header { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; }
.wildcard-intro { max-width: 700px; margin: 0 auto 3rem; color: #ccc; }
.price-comparison-container { max-width: 900px; margin: 0 auto; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 30px; padding: 2rem; overflow: hidden; text-align: left; }
.price-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: center; }
.price-row.header { font-weight: 900; text-transform: uppercase; color: #888; border-bottom: 2px solid var(--neon); }
.now-price { color: var(--neon); font-weight: 900; font-size: 1.2rem; }
.was-price { color: #666; text-decoration: line-through; }
.wildcard-cta { text-align: center; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* 7. CAVE BAR SECTION & DRAWER (FIXED) */
.side-by-side { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; background: linear-gradient(to bottom, #050505, #0a050f, #050505); text-align: left; }
.text-content p { margin-bottom: 1.5rem; color: #ccc; }
.cave-btns { margin-top: 2.5rem; }
.glass-img-frame { height: 600px; border-radius: 30px; border: 1px solid var(--border); background-size: cover; background-position: center top; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: transform 0.5s ease; }
.glass-img-frame:hover { transform: scale(1.02); }
.gold-text { font-size: 3.5rem; margin: 0.5rem 0 1.5rem; line-height: 1.1; color: #fff; }

.menu-overlay-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); z-index: 20; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); display: flex; flex-direction: column; overflow: hidden; }
.menu-overlay-layer.active { transform: translateY(0); }
.menu-overlay-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.close-overlay { background: var(--neon); color: white; border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; }

.menu-expand-link { display: block; position: relative; flex-grow: 1; overflow-y: auto; cursor: zoom-in; text-decoration: none; }
.expand-hint { position: sticky; top: 0; left: 0; width: 100%; background: var(--neon); color: white; font-size: 0.7rem; font-weight: bold; text-align: center; padding: 5px 0; z-index: 10; text-transform: uppercase; letter-spacing: 1px; }
.overlay-menu-img { width: 100%; height: auto; display: block; padding: 10px; }

/* 8. EVENTS SECTION (WEEKLY SESSIONS) */
#events { text-align: center; }
.event-slider { display: flex; gap: 2rem; overflow-x: auto; padding: 2rem 5%; justify-content: center; align-items: stretch; }
.event-card { flex: 0 0 320px; background: var(--glass); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: 0.4s ease; display: flex; flex-direction: column; position: relative; height: 450px; }
.event-card:hover { border-color: var(--neon); box-shadow: 0 0 20px rgba(255, 0, 85, 0.2); transform: translateY(-5px); }
.event-img { height: 100%; width: 100%; background-size: cover; background-position: center; transition: 0.5s ease; }
.event-card:hover .event-img { transform: scale(1.1); }
.event-info { padding: 1.5rem; position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(10px); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.event-card:hover .event-info { transform: translateY(100%); }
.event-info span { color: var(--neon); font-weight: 900; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.event-info h3 { font-size: 1.15rem; line-height: 1.5; font-weight: 700; color: #ffffff; letter-spacing: 0.5px; }
.time-br { display: block; margin-top: 5px; font-size: 0.95rem; color: #ccc; font-weight: 400; }

/* 9. CONTACT & FOOTER (FIXED SOCIALS) */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; text-align: left; }
.contact-info p { font-size: 1.1rem; color: #ccc; line-height: 1.8; }
.neon-link { color: var(--neon); text-decoration: none; font-weight: 700; transition: 0.3s ease; }
.neon-link:hover { color: #fff; text-shadow: 0 0 10px var(--neon); }

.contact-form-wrapper { background: var(--glass); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border); backdrop-filter: blur(10px); }
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-family: inherit; }

/* --- FOOTER & SOCIALS --- */
/* --- FOOTER & SOCIALS SECTION --- */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.footer-socials a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Forces icons to be pure white initially */
    transition: 0.3s ease-in-out;
}

.footer-socials a:hover {
    transform: translateY(-5px);
}

.footer-socials a:hover .social-icon {
    /* This filter approximates your #ff0055 Neon Pink */
    filter: invert(13%) sepia(90%) saturate(7400%) hue-rotate(338deg) brightness(101%) contrast(108%) 
            drop-shadow(0 0 8px var(--neon));
}

.footer p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #666;
}

/* 10. PHOTOS & GALLERY (FORCED BLACK BACKGROUND) */
#photos { background: #000; padding-bottom: 6rem; text-align: center; }
.gallery-container { max-width: 1200px; margin: 0 auto; background: #000000 !important; padding: 2rem; border-radius: 30px; border: 1px solid var(--border); min-height: 400px; overflow: hidden; }

/* Force SociableKit containers to black */
.sk-ww-facebook-photo-albums, 
.sk_fb_photo_albums_container, 
.sk_fb_photo_albums_grid { 
    background-color: #000000 !important; 
}
.sk_fb_photo_albums_album_name, .sk_fb_photo_albums_album_name a { color: #ffffff !important; font-weight: 700 !important; }
.sk_fb_photo_albums_photo_count { color: var(--neon) !important; opacity: 1 !important; font-size: 0.9rem !important; }
.sk_fb_photo_albums_grid_item { background: #000 !important; border: 1px solid var(--border) !important; }

/* 11. PORTAL & MODALS */
.portal-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(20px); z-index: 9999; display: none; align-items: center; justify-content: center; }
.modal-glass-frame { background: #111; border: 2px solid var(--neon); border-radius: 15px; width: 95%; max-width: 800px; height: 85vh; display: flex; flex-direction: column; overflow: hidden; }
.modal-header { background: #000; padding: 1rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.modal-logo { height: 25px; }
.close-btn { background: var(--neon); color: #fff; border: none; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; }
.iframe-wrapper { flex-grow: 1; background: #fff; padding: 10px; }
#portal-iframe { width: 100%; height: 100%; border: none; }

/* 12. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    #main-nav { width: 95%; padding: 0.8rem 1.2rem; top: 10px; border-radius: 25px; }
    .mobile-toggle { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
    .mobile-toggle span { width: 30px; height: 3px; background-color: #fff; border-radius: 10px; transition: 0.3s ease; }
    
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: rgba(5, 5, 5, 0.98); border: 1px solid var(--border); flex-direction: column; padding: 2rem; gap: 2rem; border-radius: 20px; z-index: 1000; }
    .nav-links.active { display: flex; }
    .nav-links a { margin-left: 0; font-size: 1.2rem; text-align: center; }

    .section { padding: 4rem 5% 2rem; }
    .side-by-side, .contact-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .glass-img-frame { height: 350px; }
    .gold-text { font-size: 2.2rem; }
    .event-slider { justify-content: flex-start; padding: 1rem 5%; gap: 1.2rem; }
    .event-card { flex: 0 0 280px; height: 400px; }

    /* MOBILE 3x3 GALLERY GRID */
    .gallery-container { padding: 8px !important; }
    .sk_fb_photo_albums_grid { display: flex !important; flex-wrap: wrap !important; justify-content: flex-start !important; gap: 8px !important; }
    .sk_fb_photo_albums_grid_item { width: calc(33.33% - 6px) !important; margin: 0 !important; }
    .sk_fb_photo_albums_grid_item:nth-child(n+10) { display: none !important; }
    .sk_fb_photo_albums_album_cover { height: 100px !important; width: 100% !important; object-fit: cover !important; }
    .sk_fb_photo_albums_header, .sk_fb_photo_albums_about_text { display: none !important; }
    /* --- WILDCARD GRID MOBILE FIX --- */
    .price-comparison-container {
        padding: 1.5rem 0.5rem; /* Reduce outer container padding to reclaim screen width */
    }
    
    .price-row {
        /* Adjust the ratio to give the 'Wild Card' column slightly more room */
        grid-template-columns: 1.6fr 1fr 1.2fr; 
        padding: 1rem 0.5rem;
        gap: 8px; /* Adds breathing room between columns */
        font-size: 0.9rem; /* Slightly smaller text for drinks */
    }
    
    .price-row.header {
        font-size: 0.75rem; /* Scale down the header text */
        letter-spacing: 1px;
    }
    
    /* Align the price columns to the right so they pull away from each other */
    .price-row > div:nth-child(2),
    .price-row > div:nth-child(3) { 
        text-align: right; 
    }
}

/* --- FLOATING MESSENGER BUBBLE --- */
.messenger-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--neon);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(255, 0, 85, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.messenger-bubble i {
    font-size: 28px;
}

/* Hidden text that slides out on hover */
.bubble-text {
    max-width: 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 14px;
    margin-left: 0;
}

/* Hover Effects */
.messenger-bubble:hover {
    width: 160px; /* Expands to show text */
    border-radius: 30px;
    background: #fff;
    color: var(--neon);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.messenger-bubble:hover .bubble-text {
    max-width: 100px;
    opacity: 1;
    margin-left: 10px;
}

/* Mobile Tweak: Keep it as just a circle to save screen space */
@media (max-width: 768px) {
    .messenger-bubble {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .messenger-bubble:hover {
        width: 55px; /* Disable expansion on mobile for better UX */
        border-radius: 50px;
    }
    .bubble-text {
        display: none;
    }
}

/* --- FACEBOOK EVENT WIDGET CUSTOM OVERRIDES --- */
.sk-fb-event, 
.sk-fb-event-item,
.sk_fb_event_container {
    background-color: #000000 !important;
    font-family: 'Inter', sans-serif !important;
    color: #ffffff !important;
}

/* Force the event title/name to Neon Pink */
.sk-fb-event-name, 
.sk-fb-event-name a,
.sk_fb_event_name,
.sk_fb_event_name a {
    color: var(--neon) !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

/* Style the event date and details */
.sk-fb-event-date, 
.sk-fb-event-details,
.sk_fb_event_date,
.sk_fb_event_details {
    color: #cccccc !important;
}

/* Style the "View Event" or "Interested" buttons to match your secondary buttons */
.sk-fb-event-button,
.sk_fb_event_button {
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: 0.3s !important;
}

.sk-fb-event-button:hover,
.sk_fb_event_button:hover {
    background-color: var(--neon) !important;
    border-color: var(--neon) !important;
}

/* Force the overall container to have your section's glass look */
#fb-events-container {
    background: #000 !important;
    border: 1px solid var(--border) !important;
    border-radius: 30px !important;
}