:root {
    --forest: #2D5A3D;
    --forest-dark: #1E3D2A;
    --off-white: #F7F5F0;
    --forest-light: #3D7A52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--off-white);
    color: var(--forest-dark);
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

/* Navbar */
#navbar {
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: all duration-500;
}

#navbar.scrolled {
    box-shadow: 0 4px 30px rgba(30, 61, 42, 0.08);
}

.nav-logo {
    color: var(--forest-dark);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--forest) !important;
}

/* Hero */
.hero-badge {
    animation: fadeInUp 0.8s ease forwards;
}

/* Products */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--forest-light));
    border-radius: 2px;
}

/* Contact Form */
#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-link {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--forest);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--forest-dark);
}

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

/* Smooth image loading */
img {
    loading: lazy;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }
}
