/* Custom Styles for MAMA D'S Snow-to-Geaux */

/* Font Setup */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #166534;
    --color-primary-dark: #14532d;
    --color-accent: #D97706;
    --color-bg: #FDFBF7;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg);
}

h1, h2, h3, h4, .font-fredoka {
    font-family: 'Fredoka', sans-serif;
}

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

/* Navbar Transition */
#navbar.scrolled #nav-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

/* Form Focus States */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.1);
}

/* Selection Color */
::selection {
    background-color: var(--color-primary);
    color: white;
}
