:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray: #F0F0F0;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--white);
    font-family: var(--font-body);
}

.menu-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0.5vh 0.5vw; /* Padding mínimo para ganar espacio */
}

/* Header Compacto */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    height: 6vh; /* Altura reducida */
}

.header-line { flex: 1; height: 5px; background: var(--black); }

.restaurant-name {
    font-family: var(--font-display);
    font-size: 5.5vh; /* Aumentado */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Grid */
.menu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8vw;
    min-height: 0;
    padding: 0.5vh 0;
}

.menu-col {
    border: 5px solid var(--black); /* Borde grueso para TV */
    border-radius: 15px;
    padding: 0.8vh 0.8vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.section-header {
    text-align: center;
    border-bottom: 5px solid var(--black);
    margin-bottom: 0.8vh;
    padding-bottom: 0.2vh;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3.8vh; /* Títulos GIGANTES */
    text-transform: uppercase;
}

/* Especiales: Formato Horizontal para Ahorrar Espacio Vertical */
.specials-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.special-item {
    padding: 0.3vh 0.5vw;
    border-radius: 8px;
    display: flex; /* Día y plato en la misma línea */
    align-items: baseline;
    gap: 0.5vw;
}

.special-item.active {
    background: var(--black);
    color: var(--white);
}

.special-day {
    font-weight: 900;
    font-size: 2vh; /* Día abreviado */
    text-transform: uppercase;
    min-width: 3.5vw; /* Ancho fijo para alineación */
}

.special-dish {
    font-size: 2.8vh; /* Plato mucho más grande y negrita */
    font-weight: 800;
    line-height: 1;
}

/* Menú y Bebidas: Espaciado Máximo */
.items-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menu-item {
    font-size: 2.8vh; /* Font size GIGANTE */
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* Pizzas: Diseño Compacto */
.pizza-base {
    font-size: 3.2vh;
    font-weight: 900;
    text-align: center;
    background: var(--black);
    color: var(--white);
    padding: 0.6vh;
    margin-bottom: 1.5vh;
    border-radius: 4px;
}

.pizza-toppings {
    display: grid; /* Grid en lugar de flex wrap para alineación compacta */
    grid-template-columns: 1fr 1fr;
    gap: 0.8vh;
}

.topping {
    border: 3px solid var(--black);
    padding: 0.6vh;
    border-radius: 4px; /* Cuadrado para ocupar menos ancho */
    font-size: 2.4vh;
    font-weight: 900;
    text-align: center;
}

/* Footer Ticker: Altura Mínima */
.menu-footer {
    height: 5vh; /* Altura muy reducida */
    border-top: 5px solid var(--black);
    display: flex;
    align-items: center;
    background: var(--white);
}

.ticker-content {
    white-space: nowrap;
    font-weight: 900;
    font-size: 2.5vh; /* Ticker sigue grande */
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}