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

body {
    /* Ensure text is readable on all backgrounds */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

/* Ensure strong contrast for links in specific sections */
.bg-kiko-burgundy a {
    color: inherit;
    text-decoration: none;
}

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