/* Custom styles for Mariscos Playa Azul */

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography enhancements */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: #1A3C34;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0F231F;
}

/* Image hover effects */
img {
    transition: transform 0.3s ease;
}

/* Button animations */
button, a {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
input:focus, textarea:focus, button:focus, a:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    nav, button, form {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-bg {
        background: none !important;
    }
}
