/* Custom Styles for Los Amigos Mexican Grill */

/* Geometric Animations */
.geo-shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.geo-triangle-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.geo-circle-1 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 4px solid #fbbf24;
    border-radius: 50%;
    animation-delay: -5s;
}

.geo-square-1 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: #ec4899;
    transform: rotate(45deg);
    animation-delay: -10s;
}

.geo-triangle-2 {
    top: 25%;
    right: 20%;
    width: 80px;
    height: 80px;
    border: 3px solid #f472b6;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -7s;
}

.geo-circle-2 {
    bottom: 30%;
    left: 25%;
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    animation-delay: -3s;
}

.geo-dots {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, #fbbf24 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.08;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.animated {
    opacity: 0;
    transform: translateY(30px);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(3, 7, 18, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #9d174d, #f59e0b);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #be185d, #fbbf24);
}

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

/* Selection Color */
::selection {
    background: #fbbf24;
    color: #030712;
}

/* Mobile Menu Animation */
.menu-line {
    transition: all 0.3s ease;
}

#mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.5rem;
}

/* Button Hover Effects */
a {
    transition: all 0.3s ease;
}

/* Image Hover Zoom */
img {
    transition: transform 0.5s ease;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .geo-shape,
    .animate-bounce {
        animation: none;
    }
    
    .reveal {
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}
