/* ============================================
   La Cabaña de los Gauchos — Estilos Globales
   ============================================ */

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

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

::-webkit-scrollbar-thumb {
    background: #482329;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d41132;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ==================
   Mobile Menu
   ================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #1a0c0e;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #482329;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #482329;
}

.mobile-menu-header h3 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #c9929b;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: white;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    color: #c9929b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: white;
    background: rgba(212, 17, 50, 0.1);
    border-left-color: #d41132;
}

.mobile-menu-nav a .material-symbols-outlined {
    font-size: 1.25rem;
    color: #d41132;
}

.mobile-menu-cta {
    padding: 1.5rem;
    border-top: 1px solid #482329;
}

.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: #d41132;
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.mobile-menu-cta a:hover {
    background: #b00e29;
}

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