:root {
    --primary: #FF8C00;
    --secondary: #FFD700;
    --accent1: #32CD32;
    --accent2: #1E90FF;
    --accent3: #8B00FF;
    --background: #0A0A0A;
    --card-bg: #1A1A1A;
    --text: #FFFFFF;
    --text-secondary: #B0B0B0;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, .heading {
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    color: var(--text);
    min-height: 100vh;
}

/* LOGO */
.logo-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent1), var(--accent2), var(--accent3));
    padding: 8px;
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.4);
    transition: all 0.4s ease;
    animation: rainbow-pulse 3s ease-in-out infinite;
}

@keyframes rainbow-pulse {
    0%, 100% { box-shadow: 0 15px 50px rgba(255, 140, 0, 0.4); }
    25% { box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 15px 50px rgba(50, 205, 50, 0.4); }
    75% { box-shadow: 0 15px 50px rgba(30, 144, 255, 0.4); }
}

.logo-container:hover {
    transform: translateY(-10px) rotate(5deg) scale(1.05);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* HEADER */
.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tagline-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.tagline-item {
    color: var(--secondary);
    font-weight: 600;
}

.tagline-divider {
    color: var(--primary);
    font-weight: 700;
}

/* STATUS BADGE */
.status-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: scale(1.05);
}

.status-open {
    background: linear-gradient(135deg, var(--accent1) 0%, #2AAA2A 100%);
    color: white;
}

.status-closed {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
}

/* STATUS Y LANGUAGE CONTAINER */
.status-language-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    transform: translateY(-2px);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
}

.lang-option.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    font-weight: 700;
}

.lang-option.active .lang-text {
    color: #000;
}

.flag-icon {
    font-size: 20px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
}

.lang-divider {
    color: var(--secondary);
    font-weight: 300;
    font-size: 18px;
}

/* BOTONES */
.btn-link {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252525 100%);
    border: 2px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-link:hover::before {
    left: 100%;
}

.btn-link:hover {
    border-color: var(--secondary);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
    transform: translateY(-4px) scale(1.01);
}

.btn-link:active {
    transform: translateY(-2px) scale(0.99);
}

.icon-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s ease;
}

.btn-link:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-location { color: var(--accent2); }
.icon-directions { color: var(--accent3); }
.icon-menu { color: var(--secondary); }
.icon-whatsapp { color: var(--accent1); }
.icon-instagram { color: #E1306C; }
.icon-phone { color: var(--primary); }

.btn-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 4px;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.btn-arrow {
    color: var(--secondary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-link:hover .btn-arrow {
    transform: translateX(5px);
}

/* DIVIDER */
.divider-fancy {
    height: 3px;
    margin: 50px 0;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent1), var(--accent2), var(--accent3), transparent);
    border-radius: 10px;
    position: relative;
}

.divider-fancy::before {
    content: '👑';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background);
    padding: 0 15px;
    font-size: 24px;
}

/* SECTION TITLES */
.section-title {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent1));
    border-radius: 10px;
}

.subsection-title {
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* MENU CARDS */
.menu-card-simple {
    background: linear-gradient(135deg, var(--card-bg) 0%, #2A2A2A 100%);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    cursor: default;
}

.menu-card-simple:hover {
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    border-left-color: var(--secondary);
    transform: translateY(-4px);
}

.menu-content {
    padding: 20px;
}

.menu-title {
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.menu-price {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
}

/* PROMOCIÓN */
.promo-section {
    margin-top: 40px;
}

.promo-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent1) 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: promo-glow 2s ease-in-out infinite;
}

@keyframes promo-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 140, 0, 0.5); }
    50% { box-shadow: 0 15px 60px rgba(255, 215, 0, 0.7); }
}

.promo-badge {
    display: inline-block;
    background: #000;
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.promo-description {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-price {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.4);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    border: 4px solid var(--primary);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.15) rotate(90deg);
}

#lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 215, 0, 0.9));
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--secondary);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 35px;
    }

    #lightbox-caption {
        bottom: 20px;
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* FOOTER */
.footer-section {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 4rem;
    padding: 2rem 0;
    color: var(--text-secondary);
    border-top: 2px solid rgba(255, 140, 0, 0.3);
}

/* ANIMATIONS */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }