/* Custom Styles for Andrew Georges */

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(28, 25, 23, 0.95); /* Stone-900 with opacity */
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-transparent {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    border-bottom-width: 2px;
    padding-bottom: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f7f3ef;
}
::-webkit-scrollbar-thumb {
    background: #c25a47;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a84836;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}
