* {
    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;
}
.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;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

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

.hero-bg-terraza {
    position: absolute;
    inset: 0;
    background: url('/images/terraza0.jpeg') center/cover;
    z-index: 0;
}

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

/* Logo Container */
.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(34, 211, 238, 0.5));
}

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

.hero-subtitle {
    font-size: 16px;
    color: #67e8f9;
    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(34, 211, 238, 0.3);
    border-color: rgba(34, 211, 238, 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, #22d3ee, #06b6d4);
    color: #000;
    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(34, 211, 238, 0.5);
    transition: all 0.3s;
}

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

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

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

.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: #0891b2;
    margin-bottom: 30px;
}

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

.desc-text strong {
    color: #0891b2;
}

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

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

.highlights ul {
    list-style: none;
}

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

.highlights li:last-child {
    border-bottom: none;
}

.highlights li:before {
    content: "🦐";
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Info Boxes */
.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, #22d3ee, #06b6d4);
    color: #fff;
    border: none;
}

.info-box.special {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    border: 2px solid #22d3ee;
}

.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.special h3 {
    color: #0891b2;
}

.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;
}

.info-box.special p {
    color: #1f2937;
}

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

.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(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

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

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 211, 238, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

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

.menu-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.menu-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA del Menú */
.menu-cta {
    text-align: center;
}

.menu-cta p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.btn-menu-full {
    display: inline-block;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #000;
    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(34, 211, 238, 0.5);
    transition: all 0.3s;
}

.btn-menu-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(34, 211, 238, 0.7);
}

/* ============================================
   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;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 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: #22d3ee;
    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;
}

.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;
}

/* ============================================
   RESPONSIVE
============================================ */
@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);
    }

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

@media (max-width: 640px) {
    .logo-container img {
        width: clamp(280px, 85vw, 400px);
    }

    .gallery-grid-menu {
        grid-template-columns: 1fr;
    }

    .menu-item {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   GALERÍA MÁS GRANDE + LIGHTBOX
============================================ */

/* Hacer imágenes más grandes */
.gallery-grid-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en lugar de 4 */
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px; /* Más alto: 500px en lugar de 350px */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: scale(1.02);
}

/* Lightbox Modal */
.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;
}

.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);
}

/* Botón Cerrar */
.lightbox .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Flechas de navegación */
.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;
}

.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 */
#caption {
    position: absolute;
    bottom: 40px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox img {
        max-width: 95%;
    }
    
    .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;
    }

    .gallery-grid-menu {
        grid-template-columns: 1fr;
    }

    .menu-item {
        height: 400px;
    }
}
