/* Custom styles that extend Tailwind or handle specific layout needs */

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

/* Typography adjustments */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

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

/* Custom scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Mobile Menu Animation */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.hidden {
    display: none;
}

/* Image container helper */
.img-contain {
    background-size: cover;
    background-position: center;
}

/* Focus styles for accessibility */
button:focus, a:focus, input:focus, textarea:focus {
    outline: 2px solid #064e3b;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-bg {
        background-image: none !important;
        background-color: #f0f0f0 !important;
    }
    nav {
        display: none;
    }
}
