/* Custom styles that extend Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture overlay could go here */
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #2D1530;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(74, 35, 76, 0.2);
}

/* Image Aspect Ratio Utilities (if Tailwind plugin not loaded) */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

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