
/* --- Core Styling & Resets --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000B3D;
    color: white;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll bars */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* --- Typography & Text Styles --- */
.luxury-caption { 
    font-family: 'Inter', sans-serif; 
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Make key text lowercase by default, as requested in HTML classes */
h1, h2, .hero-text p {
    text-transform: lowercase;
}

/* --- Navigation --- */
#navbar {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth transitions on scroll */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

/* Scrolled state for the navbar */
#navbar.scrolled {
    background: rgba(0, 11, 61, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.nav-link {
    transition: all 0.3s ease;
}

.active-tab { 
    color: #D4AF37 !important; /* Gold color */
    position: relative; 
}

/* Underline for the active tab */
.active-tab::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: #D4AF37; 
}

.nav-logo { 
    height: 45px; 
    width: auto; 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Playful ease-out-back */
}

.nav-logo:hover {
    transform: scale(1.15) rotate(-3deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

/* --- Page & Content structure --- */
.page { 
    display: none; /* Hide pages by default */
}

.page.active { 
    display: block; /* Show the active page */
    animation: pageTransition 0.8s cubic-bezier(0.23, 1, 0.32, 1); /* Entrance animation */
}

/* Keyframes for page entrance */
@keyframes pageTransition {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
        filter: blur(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
        filter: blur(0); 
    }
}

/* --- Component Styles --- */

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button Hover Effects */
.btn-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hover:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Service Cards (Home Page) */
.hover-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
/* --- Video Showcase Fade-in on Scroll --- */
/* The base class for any element that should fade/slide in on scroll */
.scroll-reveal {
    opacity: 0; /* Initially invisible */
    transform: translateY(50px); /* Positioned slightly down */
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1); /* Slow and smooth easing */
    filter: blur(10px); /* Add a slight blur initially */
}

/* The state triggered by JavaScript when the user scrolls to the element */
.scroll-reveal.visible {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move back to its final position */
    filter: blur(0); /* Remove the blur */
}

/* --- Optional Staggered (Delayed) Fades --- */
/* These delay classes create a staggered 'wave' effect when applied in order */
.delay-100 { 
    transition-delay: 0.1s; 
}

.delay-200 { 
    transition-delay: 0.2s; 
}

.delay-300 { 
    transition-delay: 0.3s; 
}

.delay-500 { 
    transition-delay: 0.5s; 
}

/* --- Video Component Styling (Overrides and Additions to your existing CSS) --- */

/* Ensures the video element itself behaves correctly within the container */
.scroll-reveal video {
    object-fit: cover; /* Video covers its entire space without stretching */
    display: block; /* Prevents tiny whitespace at the bottom */
}

/* Optional styling to make the video title text (in the hover overlay)lowercase like your main headers */
.video-title {
    text-transform: lowercase;
}

/* Stat Boxes (About Page) */
.stat-box {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Form Input Focus */
.input-focus {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input-focus:focus {
    border-bottom: 1px solid #D4AF37;
    padding-left: 10px;
}

/* --- Influencer Card Styles --- */
.influencer-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.influencer-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

.influencer-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
}

.influencer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.influencer-card:hover .influencer-image-wrapper img {
    transform: scale(1.1);
}

.instagram-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-btn:hover {
    transform: scale(1.2);
    background: #D4AF37;
    color: #000B3D;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* --- Video Showcase (New Section) --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1); /* Slow and smooth */
    filter: blur(10px);
}

/* State triggered by JavaScript Intersection Observer */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Ensures the video covers its container without stretching */
.scroll-reveal video {
    object-fit: cover;
}

/* --- Footer --- */

/* Premium Social Icons Styling */
.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
    background: #D4AF37; /* Gold background on hover */
    border-color: #D4AF37;
    color: #000B3D; /* Dark blue icon on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar { 
    width: 6px; 
}

::-webkit-scrollbar-track { 
    background: #000B3D; 
}

::-webkit-scrollbar-thumb { 
    background: #D4AF37; 
    border-radius: 10px; 
}

/* Form Messages */
.form-message {
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    animation: messageFadeIn 0.5s ease-out;
}

.form-message.success {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
}

.form-message.error {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.4);
    color: #ff4d4d;
}

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


/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* Smaller logo on mobile */
    .nav-logo {
        height: 32px;
    }
    
    /* Hero text sizing for mobile */
    .hero-text h1, .hero-text h2 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-text p {
        font-size: 1rem !important;
    }
    
    /* Section headings for mobile */
    section h2 {
        font-size: 2.5rem !important;
    }
    
    section h3 {
        font-size: 1.5rem !important;
    }
    
    /* Grid spacing for mobile */
    .grid {
        gap: 1.5rem !important;
    }
    
    /* Glass padding on mobile */
    .glass {
        padding: 1.5rem !important;
    }
    
    /* Stat boxes on mobile */
    .stat-box {
        height: 150px;
        padding: 1rem;
    }
    
    /* Buttons on mobile */
    .btn-hover {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
    
    /* Luxury caption smaller on mobile */
    .luxury-caption {
        letter-spacing: 0.2em;
        font-size: 0.75rem;
    }
    
    /* Section padding on mobile */
    .page {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    /* Influencer cards on mobile */
    .influencer-card {
        padding: 1rem !important;
    }
    
    /* Journal cards on mobile */
    #journal-grid {
        gap: 1.5rem !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-text h1, .hero-text h2 {
        font-size: 2rem !important;
    }
    
    section h2 {
        font-size: 2rem !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   Styles migrated from inline <style> block in index.html
   ═══════════════════════════════════════════════════════════ */

/* --- Navigation glass button (desktop) --- */
.nav-glass-btn {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 4px 0;
    margin: 0 12px;
    position: relative;
    transition: all 0.4s ease;
}
.nav-glass-btn:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}
.nav-glass-btn.active-tab {
    color: #D4AF37 !important;
    font-weight: 800;
}
.nav-glass-btn.active-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D4AF37;
    border-radius: 2px;
}

/* --- Mobile navigation links --- */
.nav-link-mobile {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
}

/* --- Social Icon (contact page inline icon) --- */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}
.social-icon i {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: rgba(139, 92, 246, 0.2);
}
.social-icon:hover i {
    color: #8b5cf6;
    transform: scale(1.2);
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 11, 61, 0.8);
    backdrop-filter: blur(10px);
}
.modal-content {
    position: relative;
    background: #001254;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* --- Brand logo infinite scroll slider --- */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 6)); }
}
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}
.slide-track {
    display: flex;
    width: calc(320px * 12);
    animation: scroll 20s linear infinite;
}
.slide {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}
.slide span {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.slide:hover span {
    color: #D4AF37;
    transform: scale(1.1);
}

/* --- Pulse animation --- */
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0  rgba(212, 175, 55, 0.4); }
    70%  { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0  rgba(212, 175, 55, 0); }
}

/* --- Easter egg: gold mode --- */
.gold-mode {
    filter: sepia(100%) saturate(300%) hue-rotate(-20deg) brightness(1.2) !important;
    transition: filter 2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Easter egg: Konami warp overlay --- */
.konami-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 11, 61, 0.98);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(20px);
}
.glitch-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #D4AF37;
    animation: glitch 1s infinite;
}
@keyframes glitch {
    0%   { transform: translate(0);        text-shadow: -2px 0 red, 2px 0 blue; }
    20%  { transform: translate(-2px, 2px); }
    40%  { transform: translate(-2px, -2px); text-shadow: 2px 0 red, -2px 0 blue; }
    60%  { transform: translate(2px, 2px); }
    80%  { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* --- Slide-up animation (booking bar) --- */
.animate-slide-up {
    animation: slideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes slideUp {
    from { transform: translate(-50%, 20px); opacity: 0; }
    to   { transform: translate(-50%, 0);    opacity: 1; }
}
.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* --- Click-to-Punktuate dot effect --- */
.punktuate-point {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: punktuateFade 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes punktuateFade {
    0%   { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* --- Portfolio case study modal graphics --- */
.portfolio-graphic {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.portfolio-graphic:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}
.interactive-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}
.bar-fill {
    height: 100%;
    background: #D4AF37;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Event page styles --- */
.event-hero {
    background: linear-gradient(to bottom, rgba(0, 11, 61, 0.3), #000B3D),
                url('https://images.unsplash.com/photo-1514525253361-bee8a187499b?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    height: 80vh;
}
.artist-img {
    filter: grayscale(1) contrast(1.2);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.artist-img:hover {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}
.event-title-main {
    line-height: 0.9;
    letter-spacing: -0.04em;
}
.event-title-sub {
    display: block;
    margin-top: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-size: 0.4em;
}
@media (max-width: 768px) {
    .event-title-main { font-size: 4rem; }
    .event-title-sub  { font-size: 1.5rem; margin-top: 1rem; }
}

/* --- Ticket cards --- */
.ticket-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}
.ticket-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}
.ticket-card.selected {
    background: rgba(212, 175, 55, 0.08);
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.05);
    transform: scale(1.02) translateY(-8px);
}
.ticket-card.selected::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(45deg, #D4AF37, transparent, #D4AF37);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}
@keyframes borderRotate {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(360deg); }
}

/* --- Urgency / selling-fast badge --- */
.urgency-badge {
    background: #ff4d4d;
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: pulseRed 2s infinite;
}
@keyframes pulseRed {
    0%   { box-shadow: 0 0 0 0  rgba(255, 77, 77, 0.4); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { box-shadow: 0 0 0 0  rgba(255, 77, 77, 0); }
}

/* --- Seat availability indicator --- */
.seat-indicator {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.seat-fill {
    height: 100%;
    background: #D4AF37;
    width: 85%; /* mock availability */
    transition: width 1.5s ease;
}
.ticket-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

.ticket-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.ticket-card.selected {
    background: rgba(212, 175, 55, 0.08);
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.05);
    transform: scale(1.02) translateY(-8px);
}

.ticket-card.selected::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(45deg, #D4AF37, transparent, #D4AF37);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

