/* Nightclub Theme - Custom Styles */

/* ============ BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(123, 47, 247, 0.5); }
    50% { box-shadow: 0 0 20px 10px rgba(123, 47, 247, 0); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* ============ GLOW EFFECTS ============ */
.glow-purple {
    animation: glow 3s ease-in-out infinite;
}

.glow-cyan {
    animation: glow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.glow-pink {
    animation: glow 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* ============ NAVBAR ============ */
.nav-scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(123, 47, 247, 0.1);
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator-ball {
    animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ============ CARD HOVER ============ */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.02);
}

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

.card-image {
    transition: transform 0.5s ease;
}

/* ============ LIGHTBOX ============ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

/* ============ FORM STYLES ============ */
select option {
    background: #1a1a1a;
    color: white;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* ============ SUCCESS ANIMATION ============ */
.success-check {
    animation: scaleIn 0.4s ease forwards;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7B2FF7, #FF2E88);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #9D5CFF, #FF5CAA);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
}
