/* Custom Animations & Overrides */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfbf7; /* cream-50 */
    color: #0f3d2e; /* forest-900 */
}

/* 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;
}

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

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

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

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

::-webkit-scrollbar-thumb {
    background: #1a5c45;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f3d2e;
}

/* Typography tweaks for editorial look */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Smooth image loading */
img {
    loading: lazy;
}
