/* Custom Cinematic Styles */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505; /* Deep cinematic black */
    overflow-x: hidden;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 150ms;
}

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

.delay-300 {
    transition-delay: 450ms;
}

/* Slow zoom for hero background */
.slow-zoom {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

/* Glow effects */
.glow-hover:hover {
    box-shadow: 0 0 35px rgba(193, 139, 68, 0.5);
    border-color: rgba(193, 139, 68, 0.9);
}

.drop-shadow-glow {
    filter: drop-shadow(0 0 25px rgba(193, 139, 68, 0.4));
}

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

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 5px;
}

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

/* Specific section overrides */
#first-mile .text-sv-red {
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.8);
}
