/* Custom Styles for Eden Plants and Vintage */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7;
    color: #4A4036;
}

/* Typography Overrides */
h1, h2, h3, h4, .font-serif {
    font-family: 'Libre Baskerville', serif;
}

p, a, button, .font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slowZoom 20s ease-out forwards;
}

/* Hero Text Animation */
.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards 0.3s;
}

.hero-sub {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards 0.6s;
}

.hero-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards 0.9s;
}

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

/* Mobile Menu Transitions */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

#mobile-menu.inactive {
    opacity: 0;
    pointer-events: none;
}

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

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A34633;
}

/* Focus States for Accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #E2A97E;
    outline-offset: 2px;
}
