/* Custom Styles for Willow Creek Herbs and Teas */

/* Base Typography */
body {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

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

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

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

/* Navbar Transition */
#navbar {
    background-color: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

#navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image Loading Placeholder */
img {
    background-color: #e5e5e5;
}

/* Selection Color */
::selection {
    background-color: #d1fae5;
    color: #064e3b;
}
