/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F9F7F5;
}
::-webkit-scrollbar-thumb {
    background: #E2725B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C05640;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Asymmetric Hero Image Fix */
@media (min-width: 1024px) {
    header {
        align-items: stretch;
    }
    header > div:first-child {
        min-height: 100vh;
    }
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-bottom-width: 2px;
    padding-bottom: 1px;
}
