/* Reset & basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #e6d8ad;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #f5deb3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #d4af37;
}

header {
    background-color: #000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    cursor: default;
}

.btn-whatsapp {
    background-color: #d4af37;
    color: #121212;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #b88e2f;
}

.btn-whatsapp img {
    width: 20px;
    height: 20px;
}

.hero {
    max-width: 1100px;
    margin: 3rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    margin-bottom: 1rem;
}

.hero-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #f0e8c3;
}

.hero-img {
    flex: 1 1 400px;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px #d4af37cc;
}

.carta {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.platos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.plato {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    max-width: 300px;
    box-shadow: 0 0 10px #d4af37bb;
    transition: transform 0.3s ease;
}

.plato:hover {
    transform: scale(1.05);
}

.plato img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.7rem;
}

.precio {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}

.sobre-nosotros {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    font-size: 1.1rem;
    color: #f0e8c3;
    line-height: 1.7;
}

.ubicacion {
    max-width: 1100px;
    margin: 3rem auto 4rem;
    padding: 0 1rem;
    color: #f0e8c3;
}

.ubicacion p {
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.mapa iframe {
    border-radius: 12px;
    box-shadow: 0 0 15px #d4af37bb;
}

footer {
    background-color: #000;
    color: #d4af37;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .platos {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================== */
/*     CARTA GOURMET     */
/* ===================== */

.menu-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.menu-section-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.menu-section-title .sub-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #f0e8c3;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #d4af3733;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #d4af3766;
}

.menu-item-info {
    flex: 1;
}

.menu-item-title {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #f5deb3;
    margin: 0 0 0.2rem 0;
}

.menu-item-description {
    font-size: 0.95rem;
    color: #f0e8c3;
    margin: 0;
}

.menu-item-price {
    font-weight: bold;
    color: #d4af37;
    font-size: 1.1rem;
    min-width: 70px;
    text-align: right;
}

/* ===================== */
/*  ANIMACIÓN AL SCROLL  */
/* ===================== */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}