* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
   NAVEGACIÓN
============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo h1 .la     { color: #fff; }
.logo h1 .chorcha { color: #22d3ee; }

.logo p {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover { color: #22d3ee; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1050;
}

.nav-menu.open a { font-size: 22px; }

/* ============================================
   HERO
============================================ */
.hero-menu {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg-grill {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.8), rgba(0, 0, 0, 0.6)),
                url('/images/grill0.jpeg') center/cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeInScale 1s ease-out;
}

.logo-container img {
    max-width: 90%;
    width: clamp(350px, 50vw, 500px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(220, 38, 38, 0.5));
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.hero-subtitle {
    font-size: 16px;
    color: #f87171;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}

.feature-badge:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-3px);
}

.feature-badge span:first-child { font-size: 24px; }
.feature-badge span:last-child  { font-size: 14px; font-weight: 600; color: #fff; }

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.5);
    transition: all 0.3s;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.7);
}

/* ============================================
   GALERÍA DEL MENÚ
============================================ */
.menu-gallery {
    padding: 100px 20px;
    background: #0a0a0a;
}

.container { max-width: 1400px; margin: 0 auto; }

.gallery-title {
    text-align: center;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
}

.gallery-grid-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.menu-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75) saturate(1.3);
}

/* Shine sweep */
.menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 25%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 75%
    );
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

.menu-item:hover::before { transform: translateX(100%); }

.menu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    pointer-events: none;
}

.menu-item:hover .menu-overlay { opacity: 1; }

.menu-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.menu-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.menu-item:hover .menu-overlay h3,
.menu-item:hover .menu-overlay p { transform: translateY(0); }

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

/* FIX: sin pointer-events:none el click en la imagen cerraba el lightbox al instante */
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.lightbox .close {
    position: absolute;
    top: 30px; right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox .close:hover { color: #22d3ee; }

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
    border-radius: 8px;
}

.lightbox .prev:hover,
.lightbox .next:hover {
    color: #22d3ee;
    background-color: rgba(34, 211, 238, 0.1);
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

#caption {
    position: absolute;
    bottom: 40px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

/* ============================================
   DESCRIPCIÓN DEL MENÚ
============================================ */
.menu-description {
    padding: 100px 20px;
    background: #fff;
    color: #000;
}

.description-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.desc-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 30px;
}

.desc-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.desc-text strong { color: #dc2626; }

.highlights {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid #fecaca;
}

.highlights h3 {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 20px;
}

.highlights ul { list-style: none; }

.highlights li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #1f2937;
    font-size: 16px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.highlights li:last-child { border-bottom: none; }
.highlights li:before { content: "🔥"; position: absolute; left: 0; font-size: 18px; }

.desc-info { display: flex; flex-direction: column; gap: 25px; }

.info-box {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
}

.info-box.highlight {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    border: none;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box.highlight h3 { color: #fff; }

.info-box ul { list-style: none; }

.info-box li {
    padding: 8px 0;
    font-size: 15px;
    color: #4b5563;
}

.info-box.highlight li { color: rgba(255, 255, 255, 0.9); }

.info-box p { color: #4b5563; line-height: 1.6; margin-bottom: 8px; }
.info-box.highlight p { color: #fff; }

/* ============================================
   FOOTER
============================================ */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 { font-size: 32px; font-weight: 900; margin-bottom: 15px; }
.footer-brand .la     { color: #fff; }
.footer-brand .chorcha { color: #22d3ee; }
.footer-brand p { color: #6b7280; line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; }

.social-links a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover { background: #dc2626; transform: translateY(-3px); }

.footer-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover { color: #22d3ee; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
    50%       { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8); }
}

/* ============================================
   RESPONSIVE — 1024px
============================================ */
@media (max-width: 1024px) {
    .nav-menu    { display: none; }
    .menu-toggle { display: flex; }

    .description-grid { grid-template-columns: 1fr; gap: 40px; }

    .gallery-grid-menu { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .menu-item { height: 380px; }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }

    .lightbox .close  { top: 20px; right: 20px; font-size: 40px; }
    .lightbox .prev,
    .lightbox .next   { font-size: 40px; padding: 10px; }
    .lightbox .prev   { left: 10px; }
    .lightbox .next   { right: 10px; }
}

/* ============================================
   RESPONSIVE — 768px
============================================ */
@media (max-width: 768px) {
    .nav-container { padding: 15px 20px; }

    .hero-menu { padding: 90px 15px 60px; }
    .logo-container img { width: clamp(260px, 80vw, 380px); }

    .gallery-grid-menu { grid-template-columns: 1fr; }
    .menu-item { height: 400px; }

    .highlights { padding: 25px; }
    .footer-content { grid-template-columns: 1fr; }

    .whatsapp-float { right: 15px; bottom: 20px; width: 50px; height: 50px; }
}

/* ============================================
   RESPONSIVE — 480px
============================================ */
@media (max-width: 480px) {
    .menu-item { height: 300px; }

    .features-row { gap: 12px; }
    .feature-badge { padding: 10px 16px; }
    .feature-badge span:first-child { font-size: 18px; }
    .feature-badge span:last-child  { font-size: 12px; }

    .btn-reserve { padding: 14px 28px; font-size: 14px; }

    .highlights { padding: 20px; }
    .highlights h3 { font-size: 18px; }
    .highlights li { font-size: 14px; }

    .info-box { padding: 20px; }
}