/* Custom styles to supplement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Mobile menu transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Hero image rotation fix */
.rotate-2 {
    transform: rotate(2deg);
}

/* Typography adjustments */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Smooth fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #782F40;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A1C24;
}
