/* --- HERO SECTION (Sin cambios, la que ya tenías) --- */
html {
    scroll-behavior: smooth; /* Hace que al dar clic en el menú baje suavemente */
}
.menu-hero-image {
    padding: 40px 0;
    background-color: transparent;
}
.two-column-hero {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-image-col { flex: 1; }
.hero-image-col .menu-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
.hero-text-col { 
    flex: 1;
    max-width: 540px;
    margin-left: auto;
    padding: 48px 24px;
    background-color: rgba(252,250,248,0.95);
    border-radius: 8px;
}
.menu-hero-text h2 {
    font-size: 2rem;
    color: #a73a2e; 
    margin-bottom: 20px;
}
.menu-hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* =========================================
   NUEVO DISEÑO DE CARTA (CARDS)
   ========================================= */

.full-menu-container {
    padding-bottom: 80px;
    background-color: #f9f9f9;
}

/* Menú de navegación rápida */
.menu-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background: #111827; /* Mismo color que navbar */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    transition: background 0.3s;
    font-family: 'Lato', sans-serif;
}

.menu-nav a:hover {
    background-color: #fbbf24;
    color: #111;
}

/* Categorías */
.menu-category {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.category-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #a73a2e;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

/* Línea decorativa bajo el título */
.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #fbbf24;
    margin: 10px auto 0;
}

/* Grid de Platillos */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Ajuste automático */
    gap: 40px;
}

/* TARJETA DE PLATILLO */
.dish-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    opacity: 0; 
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.dish-image {
    height: 380px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; 
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1); 
}

.dish-info {
    padding: 20px;
    text-align: left;
}

.dish-info h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #333;
    font-family: 'Lato', sans-serif;
}

.dish-info .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-style: italic;
}

.dish-info .price {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #a73a2e;
    text-align: right;
}

.highlight-bg {
    background-color: #fff5e6; /* Color crema suave */
    padding: 40px;
    border-radius: 20px;
}


.scroll-effect.left {
    transform: translateX(-100px); /* Viene de la izquierda */
}

.scroll-effect.right {
    transform: translateX(100px); /* Viene de la derecha */
}

.scroll-effect.up {
    transform: translateY(50px); /* Viene de abajo */
}

.scroll-effect.visible {
    opacity: 1;
    transform: translate(0, 0); /* Regresa a su posición original */
    transition: all 1s ease-out; /* Duración suave */
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .navbar-right {
        display: none;
    }

    .navbar-center {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #1a2635;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .navbar-center.active {
        display: flex;
    }

    .navbar-center a {
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    .navbar-center a:hover {
        background-color: rgba(251, 191, 36, 0.1);
    }
    .two-column-hero {
        flex-direction: column;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }

    .category-title {
        font-size: 2rem;
    }
}
#btn-back-to-top {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #fbbf24; 
    color: #111;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%; 
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, background-color 0.3s;
}

#btn-back-to-top:hover {
    background-color: #d4a017; 
    transform: scale(1.1); 
}
.site-footer a { color: #f7e6e6; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-top { display:flex; gap:30px; padding: 48px 0; align-items:flex-start; }
.footer-contact { flex: 1; }
.footer-contact h4 { font-family: 'Merriweather', serif; font-size: 1rem; color:#fff; margin-bottom:12px; }
.footer-contact p, .footer-contact .address, .footer-contact .hours { color: rgba(255,255,255,0.9); margin-bottom:8px; }

.footer-map { flex: 1; display:flex; align-items:center; justify-content:center; }
.map-placeholder { width: 320px; height: 220px; background:#fff; color:#222; display:flex; align-items:center; justify-content:center; border-radius:6px; }

.footer-right { flex: 1; display:flex; flex-direction:column; gap:18px; }
.subscribe-style h4 { margin:0; color:#fff; font-family: 'Merriweather', serif; }
.subscribe-style .muted { color: #f7e6e6; }
.subscribe-input { display:flex; gap:8px; margin-top:8px; }
.subscribe-input input { flex:1; padding:10px 12px; border-radius:4px; border:1px solid rgba(255,255,255,0.2); background:transparent; color:#fff; }
.subscribe-input input::placeholder { color: rgba(255,255,255,0.7); }
.btn-sub { background:#a73a2e; color:#fff; border:none; padding:10px 14px; border-radius:4px; cursor:pointer; }

.footer-logos { display:flex; gap:20px; align-items:center; margin-top:6px; }
.footer-logos .logo-item img { width:140px; opacity:0.95; filter:brightness(1.05) contrast(1.05); }

.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding:18px 0; }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; color: rgba(255,255,255,0.85); }
.foot-links a { margin-left:18px; font-size:0.95rem; }

@media (max-width:900px) {
    .footer-top { flex-direction:column; align-items:stretch; }
    .footer-map .map-placeholder { width:100%; max-width:100%; height:200px; }
    .footer-logos { justify-content:flex-start; }
    .footer-bottom-inner { flex-direction:column; gap:8px; text-align:center; }
}