/* Custom styles for Pal Antojo */

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F0E8;
}
::-webkit-scrollbar-thumb {
    background: #1B4332;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2D6A4F;
}

/* Hero scroll line animation */
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}
.scroll-line {
    animation: scrollLine 2s ease-in-out infinite;
}

/* Nav active state */
.nav-link.active {
    color: #1B4332;
}

/* Mobile menu animation */
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .scroll-line {
        animation: none;
    }
    img, .overflow-hidden img {
        transition: none;
    }
    .overflow-hidden img:hover {
        transform: none;
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
}

/* Custom selection color */
::selection {
    background: #1B4332;
    color: #F5F0E8;
}
