@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --forest: #2D5A27;
    --forest-dark: #1A3A15;
    --sage: #7CB342;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE4;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }

.leaf-pattern {
    background-image: radial-gradient(circle at 20% 80%, rgba(45, 90, 39, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(124, 179, 66, 0.08) 0%, transparent 50%);
}

.btn-primary {
    background-color: var(--forest);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--forest-dark);
    transform: scale(1.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--forest) !important;
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.success-checkmark {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
