/* Custom Styles for Visions Event Center */

/* Base Typography Adjustments */
body {
    background-color: #050B14;
    color: #E2E8F0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Glassmorphism */
.nav-scrolled {
    background-color: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

/* Reveal Animations (Applied via JS) */
.reveal-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-left {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.reveal-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

/* Hero Text Stagger */
.reveal-text {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-card {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Delays for sequential loading */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Gold Gradient Text (Optional utility) */
.text-gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #E5C585 50%, #9A7B3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050B14;
}

::-webkit-scrollbar-thumb {
    background: #0A192F;
    border: 1px solid #C5A059;
}

::-webkit-scrollbar-thumb:hover {
    background: #C5A059;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}
