/* Global Settings */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #020202;
    color: #e5e5e5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .brand-font {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
}
::-webkit-scrollbar-thumb:hover {
    background: #DD0000;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.animate-slow-zoom {
    animation: slowZoom 20s linear infinite alternate;
}

.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Navigation Active State Gradient */
.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, black, #DD0000, #FFCC00);
    transition: width 0.3s ease;
}

.nav-btn.active::after {
    width: 100%;
}

.nav-btn.active {
    color: white;
}