/* Custom Styles for Arbat Natural Foods */

:root {
    --color-forest: #166534;
    --color-forest-light: #15803d;
    --color-offwhite: #FDFCF8;
    --color-sage: #dcfce7;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-offwhite);
    color: #1f2937;
}

/* Custom Font Classes */
.font-serif {
    font-family: 'DM Serif Display', serif;
}

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

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

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

/* Image Hover Effects */
img {
    -webkit-user-drag: none;
}
