/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture or color base if needed, handled by Tailwind bg-sand-50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf2f0;
}
::-webkit-scrollbar-thumb {
    background: #d3654d;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c04f3a;
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

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

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent layout shift on load */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
