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

body {
    background-color: #fdfbf7; /* Cream-50 */
}

/* Typography refinements */
h1, h2, h3, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Animation Utilities */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #234e43;
}

/* Focus states for accessibility */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1a3c34;
}
