/* =========================================
   ESTILOS DE LA CARTA
   ========================================= */

/* --- Hero Section --- */
.carta-hero {
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
}

/* --- Títulos de Categoría --- */
.menu-category-title {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    color: #5d4037;
    position: relative;
    display: inline-block;
    width: 100%;
}

.menu-category-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffc107;
    margin: 10px auto 0;
}

/* --- Tarjetas de Platos (Dish Cards) --- */
.dish-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dish-img-container {
    height: 200px; /* Altura fija para uniformidad */
    overflow: hidden;
    position: relative;
}

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

.dish-card:hover .dish-img-container img {
    transform: scale(1.1); /* Zoom suave al pasar el mouse */
}

.dish-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.dish-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 0;
}

.dish-price {
    font-weight: 800;
    color: #d32f2f; /* Rojo para el precio */
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 10px;
}

.dish-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Tarjeta Horizontal (Para entradas) --- */
.dish-card.horizontal {
    flex-direction: row;
    align-items: center;
}

.dish-card.horizontal .dish-img-container {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

/* --- Ajuste para el scroll (Navbar sticky) --- */
.scroll-offset {
    scroll-margin-top: 160px;
}

.hover-warning:hover {
    color: #ffc107 !important;
}