/* =========================================================
   TIPOGRAFÍA BASE
========================================================= */

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #2b2b2b;
}

/* =========================================================
   HERO
========================================================= */

.hero-header {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* =========================================================
   MENÚ SUPERIOR
========================================================= */

.menu-main-bar {
    width: 100%;
    background: #036d60;
    padding: 20px 20px;
    text-align: center;
}

.titulo-menu {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.subtitulo-menu {
    font-size: 16px;
    margin-top: 6px;
    color: white;
}

.linea-amarilla.full-width {
    width: 100%;
    height: 4px;
    background: #CEB079;
}

/* =========================================================
   CATEGORÍAS
========================================================= */

.categoria {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.categoria-titulo {
    font-size: 30px;
    font-weight: 800;
    color: #036d60;
    text-align: center;
    margin-bottom: 14px;
}

/* Línea amarilla debajo del título */
.categoria .linea-amarilla.full-width {
    width: 100%;
    height: 3px;
    background: #CEB079;
    margin-bottom: 26px;
}

.categoria-sub {
    text-align: center;
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 15px;
    color: #036d60;
    font-weight: 400;
}

.guarnicion-texto {
    text-align: right;
    font-size: 14px;
    line-height: 1.25em;
    margin-top: -25px; /* sube el texto a la altura exacta del diseño */
    margin-bottom: 15px;
    font-weight: 600;
}

.guarnicion-texto span.es {
    color: #036d60;   /* verde de títulos */
    font-weight: 700;
}

.guarnicion-texto span.en {
    color: #555;
    font-weight: 400;
}
/* =========================================================
   GRID PLATOS
========================================================= */

.grid-platos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.plato-img {
    width: 100%;
    aspect-ratio: 439 / 285;   /* PROPORCIÓN EXACTA */
    object-fit: cover;         /* NO SE DEFORMA */
    display: block;
    border-radius: 4px 4px 0 0;
}

.plato-header h3.plato-titulo {
    flex: 1;
    margin-right: 10px;  /* crea separación limpia con el precio */
}

.plato-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 15px 4px 15px;
}

.plato-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #036d60;
    margin: 0;
}

.plato-precio {
    font-size: 15px;
    font-weight: 700;
    color: #036d60;
}

.plato-desc {
    margin: 0 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #505050;
    line-height: 1.35em;
}

.plato-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: visible;               /* IMPORTANTE para ver la raya fuera */
    box-shadow: 0px 0px 7px rgba(0,0,0,0.15);
    padding-bottom: 18px;            /* espacio interno */
    position: relative;              /* necesario para la raya */
    margin-bottom: 26px;             /* espacio para que la raya no choque con nada */
}
/* Rayita amarilla debajo de cada plato */
.rayita {
    position: absolute;
    bottom: -8px;                    /* LA BAJA FUERA DEL RECUADRO */
    left: 0;
    width: 100%;
    height: 4px;
    background: #CEB079;
    display: block;
    content: "";
}

/* =========================================================
   FOOTER CON IMAGEN
========================================================= */

.footer-menu {
    width: 100%;
    position: relative;
}

.footer-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    background: rgba(0,0,0,0.35);
}

.footer-text {
    color: white;
    font-size: 17px;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
    .grid-platos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categoria-sub {
        margin-bottom: 0;
    }
    .guarnicion-texto {
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .grid-platos {
        grid-template-columns: 1fr;
    }

    .plato-img {
        height: 220px;
    }

    .titulo-menu {
        font-size: 32px;
    }

    .categoria-titulo {
        font-size: 24px;
    }
}

.grid-platos .extra-item {
    padding: 10px 0;
}

.grid-platos .extra-name {
    margin: 0;
    color: #036d60;
    font-weight: 700;
    font-size: 16px;
}

.grid-platos .extra-desc {
    margin: 2px 0 0 0;
    color: #555;
    font-size: 14px;
}

/* =========================================================
   HEADER / MENÚ ALISEI
========================================================= */

/* CONTENEDOR GENERAL */
.header-alisei {
    width: 100%;
    background: #ffffff;
    position: relative;
}

/* TOP BAR */
.top-nav-container {
    width: 100%;
    display: flex;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
}

/* LOGO IZQUIERDO */
.logo-alisei img {
    height: 60px;
    object-fit: contain;
}

/* MENÚ SUPERIOR */
.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-menu ul li a {
    text-decoration: none;
    color: #4c4c4c;
    font-size: 14px;
    font-weight: 600;
}

.top-menu ul li a.active {
    color: #036d60;
}

.btn-book {
    background: #6f5baa;
    padding: 8px 14px;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 700;
}

.flag {
    height: 20px;
}

/* HERO IMAGE */
.header-hero {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOGO CENTRAL SOBRE LA IMAGEN */
.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.central-logo img {
    width: 500px;
    object-fit: contain;
}

.central-text {
    color: white;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* TÍTULO MENÚ */
.menu-title-bar {
    width: 100%;
    background: #036d60;
    text-align: center;
    padding: 14px 0;
}

.menu-title-bar .titulo-menu {
    color: white;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

.extras-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 18px;
}

.extra-item {
    font-size: 14px;
}

.extra-name {
    margin: 0;
    color: #036d60;
    font-weight: 700;
}

.extra-desc {
    margin: 2px 0 0 0;
    color: #555;
    font-size: 14px;
}

@media (max-width: 992px) {
    .extras-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 600px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
                      FOOTER
======================================================= */

.footer-alisei {
    width: 100%;
    background: #036d60;
    padding: 60px 20px 30px 20px;
    color: white;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-item {
    width: 150px;
    margin-bottom: 30px;
}

.footer-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #dcdcdc;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* hace blancos los íconos */
}

.footer-item h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.footer-item p {
    margin: 6px 0 0 0;
    font-size: 14px;
    line-height: 1.3em;
    color: #c7d7d7;
    font-weight: 400;
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #d3e0e0;
}

/* Responsive */
@media(max-width: 768px) {
    .footer-icons {
        justify-content: center;
        gap: 30px;
    }
}

.footer-icon span svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.footer-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
}

.footer-item h3 {
    color: #ffffff;
}
.footer-item p {
    color: #c9d7d7;
}

/* ================================
            HEADER
================================= */

.header {
    width: 100%;
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

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

.nav-logo img {
    height: 60px;
}

/* MENÚ */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul li a {
    font-weight: 600;
    color: #036d60;
    text-decoration: none;
    font-size: 15px;
}

/* BOOK NOW BUTTON */
.nav-menu .btn-book {
    padding: 10px 20px;
    background: #4e2f8a;
    color: white !important;
    border-radius: 4px;
    font-weight: 700;
}

/* HAMBURGUESA (OCULTO EN DESKTOP) */
.nav-toggle {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: #036d60;
}

/* ================================
          RESPONSIVE
================================= */

@media(max-width: 1200px) {

    /* Mostrar botón hamburguesa */
    .nav-toggle {
        display: block;
    }

    /* Ocultar menú por defecto */
    .nav-menu {
        position: absolute;
        top: 85px;
        right: 0;
        background: white;
        width: 100%;
        display: none;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #ddd;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 18px;
    }

    .nav-menu ul li a {
        font-size: 18px;
    }

    /* Mostrar cuando activo */
    .nav-menu.active {
        display: block;
    }
}

/* BANDA DE MARIDAJE / PAIRING */
.pairing-banner {
    width: 100%;
    background: #036d60;          /* mismo verde del sitio */
    padding: 28px 20px;
}

.pairing-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.pairing-icon svg {
    width: 90px;
    height: 90px;
    display: block;
}

.pairing-text p {
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 400;
}

.pairing-text .accent {
    color: #f0d523;          /* amarillo del diseño (puedes usar #CEB079 si ya lo usas) */
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .pairing-inner {
        flex-direction: column;
        text-align: center;
    }

    .pairing-icon svg {
        margin-bottom: 10px;
    }
}