/* Custom styles for Split Second Collision */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Thin line accents */
.line-accent {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #722F37, transparent);
}

/* Custom selection color */
::selection {
    background-color: #F5E6E0;
    color: #722F37;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Image hover effects */
.group:hover .group-hover\:bg-burgundy\/10 {
    background-color: rgba(114, 47, 55, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #E8D5CE;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #722F37;
}

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

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

/* Stagger animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .fade-in-up {
        animation: none;
    }
}
