/* Custom Styles & Overrides */

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

/* Custom Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Animation Delays */
.hero-subtitle { animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-title { animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-body { animation: fadeUp 0.8s ease forwards 0.6s; }
.hero-btn { animation: fadeUp 0.8s ease forwards 0.8s; }

/* General Fade In on Scroll */
.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;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Input Focus Styles */
input:focus, textarea:focus {
    outline: none;
}
