/* Base Styles & Utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F0E6;
    color: #2C2C2C;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Active State */
.nav-link.active {
    color: #C05640;
}

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