﻿/* ==============================================
   EL CUARTITO — Estilos principales
   Reconstruido · Mayo 2026
   ============================================== */

/* ──────────────────────────────
   RESET & BASE
────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: #F7F2E7;
    margin: 0;
    min-height: 100vh;
    color: #1a1a1a;
}

img { max-width: 100%; display: block; }

/* ──────────────────────────────
   UTILIDADES COMPARTIDAS
────────────────────────────── */

.home-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c8a96e;
    margin-bottom: 14px;
}

.home-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.home-titulo em { color: #c8a96e; font-style: italic; }
.home-titulo--claro { color: #fff; }
.home-titulo--claro em { color: #F6C60D; }

.btn-gold {
    display: inline-block;
    padding: 13px 36px;
    background: #F6C60D;
    color: #111;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #F6C60D;
    transition: background .25s, color .25s, transform .2s;
}

.btn-gold:hover {
    background: transparent;
    color: #F6C60D;
    transform: translateY(-2px);
}

.btn-gold--sm { padding: 9px 22px; font-size: .72rem; }

/* ──────────────────────────────
   NAVBAR
────────────────────────────── */
.navbar {
    background: #0f0f0f;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    box-shadow: 0 2px 28px rgba(0,0,0,.65);
    border-bottom: 2px solid #c9a227;
}

/* Espaciador para compensar la navbar fija */
.navbar-spacer { height: 96px; }

.nav-inner { display: flex; align-items: center; }
.navbar-brand { text-decoration: none; }

.navbar-brand img {
    max-height: 72px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
    transition: transform .3s, filter .3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 12px rgba(198,162,39,.45));
}

.desde1934 {
    font-size: .58rem;
    letter-spacing: .22em;
    color: #c9a227;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 24px !important;
    border-radius: 4px;
    transition: background .22s, color .22s, box-shadow .22s;
    white-space: nowrap;
    position: relative;
}

/* Inicio — texto claro con subrayado dorado animado */
.nav-lft {
    color: #c8c8c8 !important;
    background: transparent;
}
.nav-lft::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: #c9a227;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.nav-lft:hover { color: #fff !important; background: transparent; }
.nav-lft:hover::after { transform: scaleX(1); }

/* Menú — botón dorado refinado */
.nav-rgt {
    color: #0f0f0f !important;
    background: #c9a227;
    box-shadow: 0 0 0 1px rgba(198,162,39,.4);
}
.nav-rgt:hover {
    background: #F6C60D;
    color: #000 !important;
    box-shadow: 0 2px 12px rgba(198,162,39,.45);
}

.navbar-toggler { border: 1px solid rgba(198,162,39,.4); padding: 5px 10px; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1); }

/* ──────────────────────────────
   HOME · 1. HERO
────────────────────────────── */
.home-hero {
    position: relative;
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.82) 0%, rgba(20,12,0,.60) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 24px;
    animation: fadeUp .9s ease both;
}

.home-hero__titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -.02em;
}

.home-hero__bajada {
    font-size: clamp(.75rem, 2vw, 1rem);
    color: rgba(255,255,255,.55);
    letter-spacing: .1em;
    font-style: italic;
    margin: 0 0 32px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────
   HOME · 2. HISTORIA
────────────────────────────── */
.home-historia {
    background: #F7F2E7;
    padding: clamp(52px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.home-historia__wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.home-historia__img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    object-fit: cover;
    max-height: 540px;
}

.home-historia__texto p {
    font-size: .95rem;
    line-height: 1.85;
    color: #3a2e1e;
    margin-bottom: 18px;
}

/* ──────────────────────────────
   HOME · 3. VIDEO QUILMES
────────────────────────────── */
.home-video {
    background: #001F5A;
    padding: clamp(52px, 8vw, 80px) clamp(20px, 6vw, 60px);
    text-align: center;
}

.home-video .home-tag { color: #F6C60D; }

.home-video__wrap { max-width: 960px; margin: 0 auto; }

.home-video__sub {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    margin: 0 0 2rem;
}

.home-video__player {
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,.6);
    line-height: 0;
    background: #000;
}

.home-video__player video {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}

/* ──────────────────────────────
   HOME · 4. PIZZAS
────────────────────────────── */
.home-pizzas {
    background: linear-gradient(160deg, #0d0d0d 60%, #1c1407 100%);
    padding: clamp(52px, 8vw, 80px) clamp(20px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.home-pizzas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 40px,
        rgba(246,198,13,.03) 40px, rgba(246,198,13,.03) 42px
    );
    pointer-events: none;
}

.home-pizzas__header { position: relative; z-index: 1; margin-bottom: 40px; }

.home-pizzas__grid {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-pizza-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.home-pizza-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.home-pizza-card:hover img { transform: scale(1.06); }

.home-pizza-card span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.home-pizzas__cta { position: relative; z-index: 1; }

/* ──────────────────────────────
   HOME · 5. CONTACTO
────────────────────────────── */
.home-contacto {
    background: #111;
    border-top: 2px solid #F6C60D;
    padding: clamp(40px, 6vw, 64px) clamp(20px, 6vw, 80px);
}

.home-contacto__grid {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-contacto__bloque {
    flex: 1;
    text-align: center;
    padding: 0 28px;
    color: rgba(255,255,255,.75);
}

.home-contacto__bloque i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
    color: #F6C60D;
    line-height: 1;
}

.home-contacto__bloque h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F6C60D;
    margin: 0 0 8px;
}

.home-contacto__bloque p {
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255,255,255,.55);
}

.home-contacto__bloque a:not(.btn-gold) {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .2s;
}

.home-contacto__bloque a:not(.btn-gold):hover { color: #F6C60D; }

.home-contacto__sep {
    width: 1px;
    height: 80px;
    background: rgba(246,198,13,.25);
    flex-shrink: 0;
}

/* ──────────────────────────────
   MENU PAGE · HERO
────────────────────────────── */
.hero {
    background: linear-gradient(160deg, #0d0d0d 60%, #1c1407 100%);
    padding: clamp(52px, 10vw, 100px) 24px clamp(48px, 8vw, 90px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 40px,
        rgba(246,198,13,.04) 40px, rgba(246,198,13,.04) 42px
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    animation: fadeUp .9s ease both;
}

.hero-sub {
    font-size: clamp(.6rem, 2vw, .85rem);
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #F6C60D;
    margin: 0 0 18px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 20px;
}

.hero-title em { color: #F6C60D; font-style: italic; }

.hero-bajada {
    font-size: clamp(.75rem, 1.8vw, .95rem);
    color: rgba(255,255,255,.45);
    letter-spacing: .12em;
    margin: 0;
    font-style: italic;
}

/* ──────────────────────────────
   MENU PAGE · CARTA
────────────────────────────── */
.menu-seccion {
    max-width: 920px;
    margin: 0 auto;
    padding: 52px 24px 72px;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.menu-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: .1em;
    color: #1a1a1a;
    white-space: nowrap;
}

.menu-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #c8a96e, transparent);
}

.menu-idioma-wrap {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 28px;
}

.menu-images > div {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.menu-images img, .menu {
    display: block;
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.13);
    border: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .35s, transform .35s;
}

.menu-images img:hover, .menu:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
    transform: translateY(-3px);
}

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
.site-footer {
    background: #111;
    border-top: 2px solid #F6C60D;
    padding: 18px 24px;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
}

.footer-nombre {
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    letter-spacing: .05em;
    text-transform: none;
}

.footer-sep { color: #F6C60D; }

.footer-dev {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .2s;
}

.footer-dev:hover { color: #F6C60D; }

/* ──────────────────────────────
   RESPONSIVE
────────────────────────────── */
@media (max-width: 767px) {

    .navbar { padding: 8px 0; }
    .navbar-brand img { max-height: 54px; }

    .navbar-collapse {
        background: #111;
        padding: 14px 16px 18px;
        margin-top: 6px;
        border-radius: 0 0 12px 12px;
        border-top: 2px solid #F6C60D;
    }

    .nav-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        display: block;
        text-align: left;
        padding: 10px 14px !important;
        border-radius: 8px;
    }

    .home-hero { min-height: 80vh; }
    .home-hero__titulo { font-size: clamp(3rem, 18vw, 5.5rem); }

    .home-historia__wrap { grid-template-columns: 1fr; gap: 32px; }

    .home-video__player video { max-height: 280px; }

    .home-pizzas__grid { grid-template-columns: 1fr; gap: 16px; }
    .home-pizza-card { aspect-ratio: 4 / 3; }

    .home-contacto__grid { flex-direction: column; gap: 28px; }
    .home-contacto__sep { width: 80px; height: 1px; }
    .home-contacto__bloque { padding: 0; }

    .hero { padding: 44px 20px 38px; }
    .menu-seccion { padding: 28px 14px 48px; }

    .footer-inner { flex-direction: column; gap: 4px; font-size: .66rem; line-height: 1.8; }
    .footer-sep { display: none; }
}
