/* Custom Styles & Animations */
html {
    scroll-behavior: smooth;
}

body {
    /* Prevents layout shift from scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #10b981 #fdfbf7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #064e3b;
}

/* Geometric Shape Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Intersection Observer Fade In */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    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 Transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}
