/* Custom Styles for The Bugman */

:root {
    --color-forest-green: #1a4d2e;
    --color-emerald-light: #10b981;
    --color-stone-50: #fafaf9;
    --color-stone-100: #f5f5f4;
    --color-stone-800: #292524;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Color Classes */
.bg-forest-green {
    background-color: var(--color-forest-green);
}

.text-forest-green {
    color: var(--color-forest-green);
}

.bg-emerald-100 {
    background-color: #d1fae5;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

/* Subtle Animation for Hero Image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-float {
    animation: float 6s ease-in-out infinite;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}
