/* Custom Styles for Serious Food */

:root {
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Quicksand', sans-serif;
    
    --color-green-dark: #166534;
    --color-green-light: #40916c;
    --color-stone-light: #f5f5f4;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
}

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

/* Custom Animations */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Scroll Reveal Utilities */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.hidden-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Navbar Glassmorphism */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Selection Color */
::selection {
    background-color: #40916c;
    color: white;
}
