/* =========================================
   2026 FUTURISTIC THEME - EVENTGRAM BIRTHDAY
   ========================================= */

:root {
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 215, 0, 0.2);
    /* Gold border */
    --glass-highlight: rgba(255, 215, 0, 0.1);
    --neon-gold: #D4AF37;
    /* Standard Gold */
    --neon-gold-glow: rgba(212, 175, 55, 0.3);
    --deep-space: #050505;
    --void-black: #000000;
    --hologram-text: rgba(255, 255, 255, 0.9);
    --hero-overlay-start: rgba(0, 0, 0, 0.3);
    --hero-overlay-end: #000000;

    --ease-elastic: cubic-bezier(0.25, 1, 0.5, 1);
    /* Softer elastic */
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-theme="light"] {
    --glass-surface: rgba(255, 255, 255, 0.6);
    /* Frosted glass on light */
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.8);
    --neon-gold: var(--gold);
    /* Standard theme gold */
    --neon-gold-glow: rgba(143, 150, 125, 0.25);
    --deep-space: #f0f0f0;
    --void-black: #ffffff;
    --hologram-text: #2c2c2c;
    --hero-overlay-start: rgba(255, 255, 255, 0.2);
    --hero-overlay-end: #ffffff;
}

/* Global Overrides for this page */
body {
    background-color: var(--void-black);
    color: var(--hologram-text);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Typography Enhancements */
.font-gallient {
    font-family: 'Gallient', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px var(--neon-gold-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--neon-gold-glow), 0 0 10px var(--neon-gold);
    }

    100% {
        box-shadow: 0 0 5px var(--neon-gold-glow);
    }
}

@keyframes reveal-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* =========================================
   UTILITIES
   ========================================= */
.glass-panel {
    background: var(--glass-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-panel:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 15px var(--neon-gold-glow);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   HERO SECTION: IMMERSIVE PORTAL
   ========================================= */
.hero-portal {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;

    /* FORCE DARK THEME FOR HERO SECTION */
    --hero-overlay-start: transparent;
    --hero-overlay-end: #000000;
    --neon-gold: var(--gold);
    --hologram-text: rgba(255, 255, 255, 0.85);
    color: var(--hologram-text);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay-grade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--hero-overlay-start) 0%, var(--hero-overlay-end) 90%);
    z-index: -1;
}

.hero-content-wrapper {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-super-title {
    font-size: 1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--neon-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: reveal-up 1s var(--ease-smooth) 0.5s forwards;
}

.hero-mega-text {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    animation: reveal-up 1.2s var(--ease-smooth) 0.8s forwards;
}

.hero-mega-text span {
    display: block;
}

.hero-mega-text .highlight {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: reveal-up 1s var(--ease-smooth) 1.1s forwards;
}

.btn-futuristic {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-futuristic:hover::before {
    left: 100%;
}

.btn-futuristic:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 20px var(--neon-gold-glow);
    color: var(--neon-gold);
    transform: translateY(-3px);
}

/* =========================================
   INTRO: FLOATING CARDS
   ========================================= */
.intro-futuristic {
    padding: 12vh 0;
    position: relative;
    background: linear-gradient(to bottom, var(--void-black), var(--deep-space));
}

.intro-heading {
    position: sticky;
    top: 20vh;
    height: fit-content;
}

.floating-cards-container {
    perspective: 1000px;
}

.card-future {
    background: var(--glass-surface);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    /* More refined radius */
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-elastic), border-color 0.3s, box-shadow 0.3s;
}

.card-future:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-gold);
}

.card-icon-glow {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--hologram-text), var(--neon-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-gold-glow));
}

/* =========================================
   EXECUTION: PROFESSIONAL GRID
   ========================================= */
.execution-future {
    padding: 10vh 0;
}

.exec-card {
    height: 100%;
}

.exec-card-inner {
    position: relative;
    border-radius: 12px;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exec-card-inner:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.exec-img-wrapper {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.exec-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.exec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
    filter: brightness(0.8);
}

.exec-card-inner:hover .exec-img {
    transform: scale(1.1);
    filter: brightness(1);
}

.exec-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.exec-num {
    font-family: 'Gallient', serif;
    font-size: 4rem;
    color: var(--neon-gold);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    right: 1rem;
    line-height: 1;
}

/* =========================================
   GALLERY: INFINITE GRID
   ========================================= */
.gallery-future {
    padding: 10vh 0;
    background: radial-gradient(circle at 50% 50%, var(--deep-space) 0%, var(--void-black) 100%);
}

.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: none;
    /* Custom cursor would be cool, but standard for now */
}

.masonry-img {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-smooth);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.masonry-item:hover .masonry-img {
    transform: scale(1.15);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

/* =========================================
   AREAS: DATA STREAM
   ========================================= */
.areas-future {
    padding: 10vh 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.area-stream {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    perspective: 1000px;
}

.area-node {
    font-family: 'Gallient', serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
    transition: all 0.4s;
    position: relative;
}

.area-node::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--neon-gold);
    transition: 0.4s;
}

.area-node:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.area-node:hover::after {
    width: 100%;
    left: 0;
}

/* =========================================
   CTA: PORTAL CLOSING
   ========================================= */
.cta-future {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/services/luxury-party.jpg') fixed center/cover;
    /* Clean fallback if image missing */
    background-color: #111;
    position: relative;
}

.cta-future::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    backdrop-filter: blur(10px);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 991px) {
    .masonry-grid {
        column-count: 2;
    }



    .hero-mega-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }

    .card-future {
        padding: 1.5rem;
    }
}