/* Custom overrides and animations */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F5;
}

/* Smooth fade in for sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2D2D2D;
}

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

/* Hero text animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: slideUp 1s ease-out forwards;
}

.hero-text-delay {
    animation: slideUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-text-delay-2 {
    animation: slideUp 1s ease-out 0.4s forwards;
    opacity: 0;
}
