/* ========================================================
   Custom Style Overrides & Luxury Animation System
   India's Talent Fight Production — Premium Homepage
   ======================================================== */

/* Base Typography Adjustments */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: -0.025em;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
}

/* ========================================================
   GLASSMORPHISM SYSTEM
   ======================================================== */
.glass-panel {
    background: rgba(17, 24, 39, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-light {
    background: rgba(8, 27, 58, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================================
   CINEMATIC TEXT GLOW EFFECTS
   ======================================================== */
.gold-text-glow {
    background: linear-gradient(135deg, #FFF5D1 0%, #D4AF37 50%, #B88E0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.15));
}

.hero-gold-text {
    background: linear-gradient(135deg, #FFE08A 0%, #D4AF37 40%, #FFB400 70%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.blue-text-glow {
    background: linear-gradient(135deg, #BFDBFE 0%, #2563EB 50%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================================
   CARD GILD BORDER (Gold Hover Border)
   ======================================================== */
.card-gild-border {
    position: relative;
    border-radius: 1.5rem;
    background: rgba(17, 24, 39, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-gild-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1.5px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
}

.card-gild-border:hover::before {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.6) 0%, rgba(37, 99, 235, 0.4) 100%);
}

.card-gild-border:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px -5px rgba(212, 175, 55, 0.1);
}

/* ========================================================
   HERO — KEN BURNS ZOOM EFFECT
   ======================================================== */
.hero-ken-burns {
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* ========================================================
   HERO — ANIMATED SMOKE OVERLAYS
   ======================================================== */
.smoke-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.smoke-1 {
    background: radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.15) 0%, transparent 60%);
    animation: smokeFloat1 12s ease-in-out infinite alternate;
}

.smoke-2 {
    background: radial-gradient(ellipse at 80% 30%, rgba(11,31,58,0.25) 0%, transparent 60%);
    animation: smokeFloat2 15s ease-in-out infinite alternate;
}

@keyframes smokeFloat1 {
    0% { transform: translateX(-5%) translateY(0) scale(1); opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { transform: translateX(5%) translateY(-5%) scale(1.1); opacity: 0.1; }
}

@keyframes smokeFloat2 {
    0% { transform: translateX(5%) translateY(0) scale(1.1); opacity: 0.08; }
    50% { opacity: 0.15; }
    100% { transform: translateX(-5%) translateY(5%) scale(1); opacity: 0.08; }
}

/* ========================================================
   HERO — ANIMATED LIGHT RAYS
   ======================================================== */
.light-ray {
    position: absolute;
    top: -20%;
    width: 2px;
    height: 140%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212,175,55,0.08) 30%, rgba(212,175,55,0.15) 50%, rgba(212,175,55,0.08) 70%, transparent 100%);
    transform-origin: top center;
}

.light-ray-1 {
    left: 15%;
    transform: rotate(15deg);
    animation: lightRaySweep 8s ease-in-out infinite;
    opacity: 0.4;
}

.light-ray-2 {
    left: 45%;
    transform: rotate(-10deg);
    animation: lightRaySweep 10s ease-in-out 2s infinite;
    opacity: 0.3;
    width: 3px;
}

.light-ray-3 {
    left: 75%;
    transform: rotate(8deg);
    animation: lightRaySweep 12s ease-in-out 4s infinite;
    opacity: 0.25;
}

@keyframes lightRaySweep {
    0%, 100% { opacity: 0; transform: rotate(15deg) translateX(0); }
    20% { opacity: 0.4; }
    50% { opacity: 0.6; transform: rotate(12deg) translateX(30px); }
    80% { opacity: 0.3; }
}

/* ========================================================
   SWIPER CUSTOM STYLES
   ======================================================== */
.swiper-button-next, .swiper-button-prev {
    color: #D4AF37 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #D4AF37 !important;
    color: #000 !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #D4AF37 !important;
    width: 28px !important;
    border-radius: 5px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ========================================================
   CUSTOM SCROLLBAR
   ======================================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Horizontal scrollbar hide utility */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ========================================================
   PARALLAX BACKGROUNDS
   ======================================================== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========================================================
   SHIMMER HOVER EFFECT
   ======================================================== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-hover:hover {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ========================================================
   MENU LINK UNDERLINE TRANSITION
   ======================================================== */
.menu-link-transition {
    position: relative;
}
.menu-link-transition::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}
.menu-link-transition:hover::after {
    width: 100%;
}

/* ========================================================
   LIGHTGALLERY CUSTOM STYLING
   ======================================================== */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.96) !important;
    backdrop-filter: blur(10px);
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #D4AF37 !important;
}

/* ========================================================
   STATISTICS COUNTER GLOW BOX
   ======================================================== */
.stat-box {
    position: relative;
    overflow: hidden;
}
.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* ========================================================
   MOBILE COLLAPSE & BURGER ANIMATIONS
   ======================================================== */
.collapse-rotated {
    transform: rotate(180deg);
}

.burger-line-active.burger-line-1 {
    transform: translateY(8px) rotate(45deg);
}
.burger-line-active.burger-line-2 {
    opacity: 0;
}
.burger-line-active.burger-line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================================
   FAQ ACCORDION TRANSITIONS
   ======================================================== */
.faq-content {
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-toggle.text-\[\#D4AF37\] {
    color: #D4AF37;
}

/* ========================================================
   GALLERY FILTER ANIMATIONS
   ======================================================== */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hidden-filter {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.gallery-filter-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ========================================================
   TIMELINE NODE ANIMATION
   ======================================================== */
.timeline-node {
    opacity: 0;
    transform: translateY(20px);
}
.timeline-node.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ========================================================
   BUTTON RIPPLE EFFECT
   ======================================================== */
@keyframes btnRipple {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

/* ========================================================
   RESPONSIVE ADJUSTMENTS
   ======================================================== */
@media (max-width: 768px) {
    .hero-ken-burns {
        animation-duration: 20s;
    }
    .light-ray {
        display: none;
    }
}

/* ========================================================
   CINEMATIC BULB GLOW & LED SCREEN EFFECT
   ======================================================== */
.bulb-glow-text {
    color: #FFFFFF;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 25px rgba(212, 175, 55, 0.6),
        0 0 45px rgba(212, 175, 55, 0.4),
        0 0 70px rgba(255, 180, 0, 0.3);
}

.led-screen-shimmer {
    animation: ledPulse 4s ease-in-out infinite alternate;
}

@keyframes ledPulse {
    0% {
        box-shadow: 0 0 20px rgba(212,175,55,0.15), inset 0 0 15px rgba(212,175,55,0.1);
        filter: brightness(0.95);
    }
    100% {
        box-shadow: 0 0 45px rgba(212,175,55,0.4), inset 0 0 25px rgba(212,175,55,0.25);
        filter: brightness(1.1);
    }
}

.hero-text-shadow {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.8);
}

