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

body {
    background-color: #FDFBF7;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4F1DE;
}
::-webkit-scrollbar-thumb {
    background: #E07A5F;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C05A40;
}

/* Geometric shapes animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

/* Ensure images have consistent aspect ratios */
img {
    object-fit: cover;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}
