/* Custom Styles for Mercado Cinco De Mayo */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(71, 128, 80, 0.3); }
    50% { box-shadow: 0 0 40px rgba(71, 128, 80, 0.6); }
}

/* Geometric Decorations */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.geometric-shape.circle {
    border-radius: 50%;
    background: currentColor;
}

.geometric-shape.triangle {
    width: 0 !important;
    height: 0 !important;
    border-style: solid;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #478050 0%, #98c79e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Hover Zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

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

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

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

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

/* Mobile Menu Animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.active {
    max-height: 400px;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(10, 24, 13, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem !important;
    }
}

/* Accessibility */
:focus-visible {
    outline: 3px solid #98c79e;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    nav, footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
