@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Dancing+Script:wght@600&family=Playfair+Display:wght@500;700&display=swap');
/* ============================================
   RESET Y CONFIGURACIÓN BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 20% 30%, rgba(230,179,37,0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,82,82,0.08), transparent 40%),
        #0a0a0a;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   VARIABLES CSS - PALETA VALLENATA
   ============================================ */
:root {
    /* Colores principales - Optimizados para accesibilidad */
    --bg-deep-black: #0a0a0a;
    --gold-accent: #E6B325; /* Mejor contraste: 7.5:1 sobre #0a0a0a */
    --gold-light: #F8E6A8;
    --confeti-red: #FF5252;
    --confeti-yellow: #FFC107;
    --confeti-green: #4CAF50;
    --confeti-blue: #2196F3;
    
    /* Colores de texto - Mejor legibilidad */
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-accent: #E6B325;
    
    /* Estados */
    --success: #2E7D32;
    --warning: #FF9800;
    --error: #D32F2F;
    
    /* Sombras optimizadas para performance */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.5);
    --shadow-lg: 0 6px 12px rgba(0,0,0,0.6);
    --shadow-gold: 0 0 12px rgba(230, 179, 37, 0.6);
    
    /* Radios */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Espaciado sistemático */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
    
    /* Utilidades de performance */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ============================================
   TIPOGRAFÍA VALLENATA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--gold-accent);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-accent);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--confeti-red), var(--confeti-yellow), var(--confeti-green), var(--confeti-blue));
    margin: var(--space-sm) auto;
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    font-style: italic;
}

/* ============================================
   BOTONES VALLENATOS
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--bg-deep-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 179, 37, 0.7);
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--gold-accent);
    color: var(--bg-deep-black);
    transform: translateY(-3px);
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

/* ============================================
   HEADER VALLENATO
   ============================================ */
/* Estilos para el Header y Logo */
.main-header {
    background-color: #0a0a0a; /* Fondo casi negro */
    padding: 20px 0; /* Reducido para dejar espacio para el buscador */
    text-align: center;
    position: sticky; /* Vuelve a ser sticky */
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-accent);
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 10, 0.95); /* Semi-transparente para efecto blur */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Ajustes para el logo con buscador */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo .tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: #f8e5ad;
    margin-top: 4px;
    font-weight: normal;
    text-transform: lowercase;
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Logo de imagen */
.logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 8px auto;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
    transition: filter var(--transition-base);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
}

.logo-img-welcome {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 16px auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
    }
    to {
        filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.8));
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
    .logo-img-welcome {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    .logo-img-welcome {
        height: 70px;
    }
}

/* Estilo para el icono de música (opcional, si quieres que combine) */
.fa-music {
    font-size: 0.6em;
    vertical-align: middle;
    margin-right: 10px;
    color: #d4af37;
    -webkit-text-fill-color: initial; /* Reset del gradiente del h1 */
}

/* ============================================
   BUSCADOR EN HEADER
   ============================================ */
.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 var(--space-md);
    position: relative;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--gold-accent);
    font-size: 0.9rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold-accent);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(230, 179, 37, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    font-size: 0.8rem;
    transition: color var(--transition-base);
    z-index: 2;
}

.search-clear:hover {
    color: var(--gold-accent);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}

.search-result-item {
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.search-result-item:hover {
    background-color: rgba(230, 179, 37, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-category {
    font-size: 0.7rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.search-result-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.search-result-price {
    color: var(--gold-accent);
    font-weight: 600;
}

.search-no-results {
    padding: var(--space-md);
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

/* Resultados de búsqueda activos */
.search-results.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

/* Estilos para elementos de resultado individuales */
.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-result-item:hover {
    background-color: rgba(230, 179, 37, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item.no-results {
    cursor: default;
    opacity: 0.7;
}

.search-result-item.no-results:hover {
    background-color: transparent;
}

.search-result-item.no-results i {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-right: var(--space-sm);
}

.result-content {
    flex: 1;
}

.result-content h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.result-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.result-price {
    color: var(--gold-accent);
    font-weight: 600;
}

.result-category {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 10px;
}

/* Badge para categorías en resultados de búsqueda */
.result-category-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 0.7rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-category-badge i {
    font-size: 0.8rem;
}

.result-category-badge span {
    background-color: rgba(230, 179, 37, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.result-action {
    background: none;
    border: none;
    color: var(--gold-accent);
    cursor: pointer;
    padding: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-base);
    margin-left: var(--space-sm);
}

.result-action:hover {
    opacity: 1;
}

/* Elementos resaltados en el menú */
.menu-item.highlighted {
    animation: highlightPulse 2s ease-in-out;
    position: relative;
    z-index: 1;
}

/* Secciones completas resaltadas */
.menu-section.highlighted {
    animation: sectionHighlightPulse 2s ease-in-out;
    position: relative;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 179, 37, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(230, 179, 37, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 179, 37, 0);
    }
}

@keyframes sectionHighlightPulse {
    0% {
        background-color: rgba(230, 179, 37, 0.05);
        border-left: 3px solid rgba(230, 179, 37, 0.3);
    }
    50% {
        background-color: rgba(230, 179, 37, 0.1);
        border-left: 3px solid var(--gold-accent);
    }
    100% {
        background-color: rgba(230, 179, 37, 0.05);
        border-left: 3px solid rgba(230, 179, 37, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-nav a i {
    font-size: 0.9rem;
}

.main-nav a {
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-accent);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION VALLENATA
   ============================================ */
.hero {
    padding: var(--space-xxl) 0;
    background: linear-gradient(rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.9)), 
                url('assets/images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: var(--space-md);
    font-family: 'Great Vibes', cursive;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image .image-placeholder {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--confeti-red) 100%);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.hero-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   SECCIÓN DE NAVEGACIÓN DE MENÚ
   ============================================ */
.menu-navigation {
    padding: var(--space-xl) 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.category-btn {
    padding: var(--space-sm) var(--space-lg);
    background-color: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--gold-accent);
    color: var(--bg-deep-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.category-btn i {
    font-size: 1.2rem;
}

/* ============================================
   TARJETAS DE MENÚ
   ============================================ */
.menu-section {
    padding: var(--space-xl) 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.menu-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-gold);
}

.menu-card__header {
    padding: var(--space-md);
    background-color: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card__title {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 0;
}

.menu-card__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--confeti-green);
}

.menu-card__body {
    padding: var(--space-md);
}

.menu-card__description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.menu-card__tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.menu-card__tag {
    padding: 0.2rem 0.5rem;
    background-color: #C62828;
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
}

.menu-card__tag--recommended {
    background-color: #2E7D32;
}

.menu-card__tag--spicy {
    background-color: #C62828;
}

.menu-card__tag--new {
    background-color: #1565C0;
}


/* ============================================
   FOOTER VALLENATO
   ============================================ */
.main-footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: var(--space-xxl) 0 var(--space-xl);
    border-top: 2px solid var(--gold-accent);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h3 {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', serif;
}

.footer-column p,
.footer-column a {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    display: block;
}

.footer-column a:hover {
    color: var(--gold-accent);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold-accent);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVIDAD
   ============================================ */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 0;
    }
    
    .main-header .container {
        flex-direction: row;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .main-nav ul {
        gap: var(--space-xs);
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .main-nav a i {
        font-size: 0.8rem;
    }
    
    /* Barra de búsqueda responsive */
    .header-search {
        max-width: 100%;
        margin: var(--space-sm) 0;
        order: 3; /* Mover después del logo y navegación */
        width: 100%;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        padding: 8px 35px 8px 35px;
        font-size: 0.85rem;
    }
    
    .search-icon {
        left: 10px;
        font-size: 0.8rem;
    }
    
    .search-clear {
        right: 8px;
        padding: 3px;
        font-size: 0.75rem;
    }
    
    .search-results {
        position: fixed;
        left: 10px;
        right: 10px;
        max-height: 250px;
        z-index: 1002;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
}

/* Header más compacto para pantallas muy pequeñas */
@media (max-width: 480px) {
    .logo .tagline {
        display: none; /* Ocultar tagline en pantallas muy pequeñas */
    }
    
    .main-nav a span {
        display: none; /* Mostrar solo iconos en pantallas muy pequeñas */
    }
    
    .main-nav a i {
        font-size: 1rem;
        margin: 0;
    }
    
    .main-nav a {
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   ANIMACIONES DE CONFETI (placeholder)
   ============================================ */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--confeti-red);
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* ============================================
   ESTILOS PARA FORMULARIOS (añadidos)
   ============================================ */
.reservation-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input,
.form-select {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-accent);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-base);
    width: 100%;
}

.form-input:focus,
.form-select:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-light);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select option {
    background: var(--bg-deep-black);
    color: var(--text-primary);
}

.btn-block {
    width: 100%;
}

.form-note {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.8;
}

/* ============================================
   ESTILOS PARA SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   MEDIA QUERIES PARA PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --gold-accent: #FFD700;
        --text-primary: #FFFFFF;
        --text-secondary: #E0E0E0;
    }
}

/* ============================================
   PANTALLA DE BIENVENIDA
   ============================================ */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-deep-black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.welcome-content {
    text-align: center;
    padding: var(--space-xl);
    max-width: 600px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #E6B325;
    }
    to {
        text-shadow: 0 0 25px #E6B325, 0 0 40px #E6B325;
    }
}

.welcome-logo .tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #f8e5ad;
    margin-top: 8px;
    font-weight: normal;
    text-transform: lowercase;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.welcome-message p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.welcome-message .subtitle {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

/* La barra de carga ha sido eliminada según solicitud del usuario */
.loading-indicator {
    display: none; /* Oculta completamente la barra de carga */
}

/* ============================================
   DESTELLOS DORADOS PARA PANTALLA DE CARGA
   ============================================ */
.golden-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #E6B325;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 15px #E6B325, 0 0 30px rgba(230, 179, 37, 0.7);
}

@keyframes sparkle-twinkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes sparkle-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(40px, 0) rotate(180deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ============================================
   ITEMS DE MENÚ SIMPLIFICADOS (SIN CAJAS INTERACTIVAS)
   ============================================ */
.menu-item-simple {
    background: transparent;
    border: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.menu-item-simple:last-child {
    border-bottom: none;
}

.menu-item-simple:hover {
    background: rgba(212, 175, 55, 0.08);
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
    transform: scale(1.01);
    transition: transform 0.2s ease, background 0.2s ease;
}

.menu-item-info {
    flex: 1;
    padding-right: var(--space-md);
}

.menu-item-title {
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    line-height: 1.3;
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
    font-style: italic;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--confeti-green);
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

.menu-item-tags {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
    flex-wrap: wrap;
}

.menu-item-tag {
    font-size: 0.6rem;
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
}

.menu-item-tag.recommended {
    background: rgba(76, 175, 80, 0.12);
    color: rgba(76, 175, 80, 0.7);
    border-color: rgba(76, 175, 80, 0.2);
}

.menu-item-tag.new {
    background: rgba(33, 150, 243, 0.12);
    color: rgba(33, 150, 243, 0.7);
    border-color: rgba(33, 150, 243, 0.2);
}

.menu-item-tag.premium {
    background: rgba(230, 179, 37, 0.1);
    color: rgba(230, 179, 37, 0.6);
    border-color: rgba(230, 179, 37, 0.2);
}

/* ============================================
   MEJORAS PARA MENÚ COMPLETO
   ============================================ */
.menu-section {
    margin-bottom: var(--space-xxl);
    padding-top: var(--space-xl);
}

.menu-section:first-of-type {
    padding-top: 0;
}

.menu-section h3.section-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--gold-light);
}

.menu-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

/* Separador entre secciones */
.menu-section:not(:first-of-type) {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: var(--space-xxl);
}

/* ============================================
   TARJETA DE DIRECCIÓN
   ============================================ */
.address-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 500px;
    margin: 0 auto;
}

.address-content h4 {
    color: var(--gold-accent);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.address-content p {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-info {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-light) !important;
    font-weight: 500;
}

/* ============================================
   RESPONSIVIDAD COMPLETA PARA MÓVILES
   ============================================ */

/* Dispositivos medianos (tablets) */
@media (max-width: 992px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .menu-categories {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        flex: 1 0 calc(50% - var(--space-md));
        min-width: 140px;
    }
}

/* Dispositivos pequeños (móviles grandes) */
@media (max-width: 768px) {
    /* Header optimizado para móviles con buscador */
    .main-header {
        position: sticky;
        padding: 0.25rem 0;
    }
    
    .main-header .container {
        gap: var(--space-xs);
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Logo en móviles */
    .logo {
        align-items: center;
        text-align: center;
        margin-bottom: var(--space-xs);
    }
    
    /* Barra de búsqueda en móviles - versión compacta */
    .header-search {
        order: 2;
        max-width: 100%;
        margin: var(--space-xs) 0;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        padding: 8px 35px 8px 35px;
        font-size: 0.85rem;
    }
    
    /* Navegación en móviles */
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: var(--space-xs);
    }
    
    .main-nav ul {
        gap: var(--space-xs);
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    /* ↓ Esto es lo clave: reducir el espacio inicial del menú */
    .menu-navigation {
        padding: 14px 16px 12px;
    }

    .menu-navigation .section-title {
        font-size: 22px !important;
        margin-bottom: 2px;
    }

    .menu-navigation .section-title::after {
        margin: 4px auto 6px;
        width: 50px;
        height: 2px;
    }

    .menu-navigation .section-subtitle {
        font-size: 11px !important;
        margin-bottom: 10px;
    }
    
    /* Botones de categoría en grilla 2 columnas */
    .menu-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 0;
    }
    
    .category-btn {
        padding: 8px 4px;
        font-size: 11px;
        justify-content: center;
    }
    
    /* Tipografía */
    h1 { font-size: clamp(1.8rem, 6vw, 2.2rem) !important; line-height: 1.2; }
    h2 { font-size: clamp(1.5rem, 5vw, 1.8rem) !important; }
    h3 { font-size: clamp(1.2rem, 4vw, 1.4rem) !important; }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: var(--space-sm);
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: var(--space-lg);
    }
    
    .container { padding: 0 var(--space-sm); }
    
    .menu-section {
        padding: var(--space-md) 0;
        margin-bottom: var(--space-lg);
    }
    
    .menu-section:not(:first-of-type) {
        padding-top: var(--space-lg);
    }
    
    .menu-section:first-of-type {
        padding-top: 14px;
    }
    
}

/* Dispositivos muy pequeños (móviles pequeños) */
@media (max-width: 480px) {
    /* Tipografía aún más compacta */
    h1 {
        font-size: clamp(1.6rem, 7vw, 1.9rem) !important;
    }
    
    h2 {
        font-size: clamp(1.3rem, 6vw, 1.5rem) !important;
    }
    
    h3 {
        font-size: clamp(1.1rem, 5vw, 1.2rem) !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Contenedores más compactos */
    .container {
        padding: 0 var(--space-xs);
    }
    
    .menu-section {
        padding: var(--space-md) 0;
    }
    
    /* Items del menú ultra compactos */
    .menu-item-title {
        font-size: 0.95rem;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    /* Botones de categoría en columna */
    .menu-categories {
        gap: var(--space-xs);
    }
    
    .category-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Header ultra compacto */
    .main-nav a span {
        display: none;
    }
    
    .main-nav a i {
        font-size: 1rem;
    }
    
    .main-nav a {
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
    
    /* Pantalla de bienvenida ajustada */
    .welcome-content {
        padding: var(--space-lg);
    }
    
    .welcome-message p {
        font-size: 1rem !important;
    }
}

/* Dispositivos en orientación horizontal */
@media (max-width: 768px) and (orientation: landscape) {
    .menu-item-simple {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .menu-item-price {
        text-align: right;
        min-width: 80px;
        margin-left: var(--space-sm);
    }
    
    .main-header .container {
        flex-direction: row;
    }
    
    .main-nav ul {
        flex-wrap: nowrap;
    }
}

/* Mejoras de accesibilidad y touch */
@media (max-width: 768px) {
    /* Tamaños mínimos para touch */
    .category-btn,
    .main-nav a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mejor espaciado para dedos */
    .menu-item-simple {
        padding: 0.75rem 0;
    }
    
    /* Scroll suave mejorado */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; /* Compensa header fijo */
    }
}

/* ============================================
   ESTILOS PARA SUBCATEGORÍAS
   ============================================ */
.menu-subcategory {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(230, 179, 37, 0.2);
}

.menu-subcategory:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--gold-accent);
    position: relative;
}

.subcategory-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

/* Descripción de subcategoría (ej: nota de micheladas) */
.subcategory-description {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(230, 179, 37, 0.08);
    border-left: 3px solid var(--gold-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.4;
}

.subcategory-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.subcategory-items .menu-item-simple {
    margin-left: var(--space-sm);
    border-left: 2px solid rgba(230, 179, 37, 0.3);
    padding-left: var(--space-md);
}

.subcategory-items .menu-item-simple:hover {
    border-left-color: var(--gold-accent);
    background: rgba(230, 179, 37, 0.05);
}

/* Responsive para subcategorías */
@media (max-width: 768px) {
    .menu-subcategory {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
    }
    
    .subcategory-title {
        font-size: 1.4rem;
    }
    
    .subcategory-items .menu-item-simple {
        margin-left: 0;
        padding-left: var(--space-sm);
        border-left-width: 1px;
    }
}

/* ============================================
   PARTÍCULAS FLOTANTES
   ============================================ */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #E6B325;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s infinite linear;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    from {
        transform: translateY(100vh);
        opacity: 0;
    }
    to {
        transform: translateY(-10vh);
        opacity: 1;
    }
}

/* ============================================
   NOTAS MUSICALES FLOTANTES
   ============================================ */
.music-note {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 0 6px rgba(230, 179, 37, 0.5));
    animation: musicNoteFloat var(--float-duration, 8s) ease-in-out forwards;
    animation-delay: var(--float-delay, 0s);
}

@keyframes musicNoteFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.8;
    }
    30% {
        opacity: 1;
        transform: translateY(-20vh) translateX(var(--drift-x, 30px)) rotate(var(--rotate-deg, 15deg)) scale(1.1);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-50vh) translateX(var(--drift-x2, -20px)) rotate(var(--rotate-deg2, -10deg)) scale(1);
    }
    85% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-90vh) translateX(var(--drift-x3, 40px)) rotate(var(--rotate-deg3, 25deg)) scale(0.3);
    }
}

/* Variante más lenta para notas más grandes */
.music-note--slow {
    --float-duration: 12s;
    font-size: 2rem;
}

/* Variante más rápida para notas pequeñas */
.music-note--fast {
    --float-duration: 6s;
    font-size: 1rem;
}

/* Nota con brillo dorado */
.music-note--gold {
    filter: drop-shadow(0 0 10px rgba(230, 179, 37, 0.8)) brightness(1.3);
}

/* ============================================
   PARTÍCULAS DECORATIVAS
   ============================================ */
.particle-gold {
    background: #E6B325;
    box-shadow: 0 0 25px #E6B325, 0 0 50px rgba(230, 179, 37, 0.7);
    width: 10px;
    height: 10px;
    filter: blur(0.5px);
}

.particle-red {
    background: #FF5252;
    box-shadow: 0 0 25px #FF5252, 0 0 50px rgba(255, 82, 82, 0.7);
    width: 10px;
    height: 10px;
    filter: blur(0.5px);
}

.particle-blue {
    background: #2196F3;
    box-shadow: 0 0 25px #2196F3, 0 0 50px rgba(33, 150, 243, 0.7);
    width: 10px;
    height: 10px;
    filter: blur(0.5px);
}

.particle-green {
    background: #4CAF50;
    box-shadow: 0 0 25px #4CAF50, 0 0 50px rgba(76, 175, 80, 0.7);
    width: 10px;
    height: 10px;
    filter: blur(0.5px);
}

/* Partículas grandes especiales */
.particle-large {
    width: 15px;
    height: 15px;
    box-shadow: 0 0 30px currentColor, 0 0 60px rgba(255, 255, 255, 0.5);
    animation: float-large 8s infinite linear;
    filter: blur(1px);
}

/* Partículas extra grandes con efectos especiales */
.particle-extra-large {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 40px currentColor, 0 0 80px rgba(255, 255, 255, 0.6);
    animation: float-extra-large 12s infinite ease-in-out;
    filter: blur(1.5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes float-large {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    to {
        transform: translateY(-20vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes float-extra-large {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.9;
        transform: translateY(70vh) rotate(180deg) scale(1.2);
    }
    50% {
        opacity: 0.7;
        transform: translateY(40vh) rotate(360deg) scale(1);
    }
    80% {
        opacity: 0.5;
        transform: translateY(10vh) rotate(540deg) scale(0.9);
    }
    100% {
        transform: translateY(-10vh) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .menu-navigation,
    .footer-bottom,
    .btn,
    .confetti,
    .music-note,
    .welcome-screen,
    .particle,
    .firework,
    .firework-spark {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .menu-card {
        break-inside: avoid;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .menu-card__price {
        color: black !important;
    }
}