:root {
    --gold: #E4C14A;
    --gold-2: #CFA93A;
    --gold-3: #9E7E24;
    --ink: #0A0B0E;
    --ink-2: #111217;
    --paper: #f8f7f3;
    --section-py: 4rem;
    --section-py-lg: 7rem;
    --radius-xl: 24px;
}
/*
html, body {
    background: var(--ink);
    color: #f2f2f2;
    scroll-behavior: smooth;
}*/

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

    .btn-primary:hover {
        filter: brightness(1.05);
    }

.btn-outline-light {
    border-color: var(--gold);
    color: #fff;
}

    .btn-outline-light:hover {
        background: var(--gold);
        color: #111;
        border-color: var(--gold);
    }

.gold-text {
    color: var(--gold);
}

.gold-bg {
    background: linear-gradient(180deg, rgba(228,193,74,.18), rgba(207,169,58,.06));
}

.glass {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-xl);
}

.section-title .kicker {
    
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

footer {
    border-top: 1px solid rgba(255,255,255,.1);
}

.title-xxl {
    font-family: var(--rr-ff-h);
    color: var(--rr-heading-1);
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    line-height: 1.02;
    font-weight: 800;

}

.lead-lg {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.logo-small {
    height: 44px;
    object-fit: contain;
}

.portada-intro {
    font-size: 2.2rem;
    font-family: var(--rr-ff-h);
    color: var(--rr-theme-1);
}

@media (max-width: 576px) {
    #portada_intro {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

.portada-intro1 {
    font-size: 2.8rem;
    font-family: var(--rr-ff-h);
    color: var(--rr-theme-1);
}

@media (max-width: 576px) {
    .portada_intro1 {
        font-size: 2.5rem;
        line-height: 1.4;
    }
}


.portada-html {
    font-family: var(--rr-ff-p);
    color: var(--rr-heading-1);
    font-size: 1rem; /* antes: heredado (muy grande) */
    line-height: 1.45;
}

@media (max-width: 576px) {
    .portada-html {
        font-size: 0.92rem;
        line-height: 1.4;
    }
}

.artistas {
    
    font-family: var(--rr-ff-h);
    color: var(--rr-theme-1);
}

.line-up {
    font-family: var(--rr-ff-p);
    color: var(--rr-heading-1);
}

.venta {
    font-family: var(--rr-ff-h);
    color: var(--rr-theme-1);
}

.alimentos {
    font-family: var(--rr-ff-p);
    color: var(--rr-heading-1);
}
/* --------------------------- */
/* LINE-UP SECTION (MEJORADA) */
/* --------------------------- */
#sec-lineup.section {
    padding-top: calc(var(--section-py-lg) + 1rem);
    padding-bottom: calc(var(--section-py-lg) + 1rem);
}

.artist-card {
    background: #12131A;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .artist-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,.55);
    }

    .artist-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 18px;
    }

/* --------------------------- */
/* ALIMENTOS & BEBIDAS (sutil) */
/* --------------------------- */

#sec-regalos.section {
    --section-py: clamp(36px, 6vw, 64px);
    --card-radius: 14px;
    --card-bg: #101218;
    --card-bd: rgba(255,255,255,.06);
    --shadow: 0 6px 18px rgba(0,0,0,.22);
    --gold: #D6B36A; /* ajusta a tu paleta */
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

/* Grid responsivo: 2 en móvil, 3 en tablet, 4 en desktop */
.menu-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 576px) {
    .menu-grid {
        gap: 14px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-grid {
        gap: 16px;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tarjeta compacta y sutil */
.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .menu-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,.25);
        border-color: rgba(255,255,255,.09);
    }

/* Imagen con relación 4:3 para que todas se vean uniformes */
.menu-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* todas del mismo alto */
    overflow: hidden;
}

    .menu-media img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* recorte sutil y uniforme */
        display: block;
        filter: saturate(.98);
        transform: scale(1.001); /* evita bordes blancos por subpíxel */
    }

/* Info compacta */
.menu-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: 10px 12px;
}

.menu-name {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: .2px;
}

.price {
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
}

/* Variante aún más mínima (opcional):
   muestra el precio sobre la foto, esquina inferior derecha */
.menu-card.minimal .menu-info {
    display: none;
}

.menu-card.minimal .menu-media::after {
    content: attr(data-price);
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(0,0,0,.45);
    padding: 4px 8px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

/* --------------------------- */
/* ELEMENTOS GENERALES         */
/* --------------------------- */

.partner-logo {
    background: #12131A;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px 20px;
    text-align: center;
}

    .partner-logo img {
        max-height: 40px;
        width: auto;
        filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
    }

.map-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}

.timeline .item {
    border-left: 4px solid var(--gold);
    padding-left: 12px;
    margin-left: 8px;
}

.badge-hash {
    background: #1b1b21;
    border: 1px solid rgba(255,255,255,.08);
    color: var(--gold);
}

.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

@media (min-width: 992px) {
    .section {
        padding-top: var(--section-py-lg);
        padding-bottom: var(--section-py-lg);
    }
}

#sec-portada .wrap {
    position: relative;
    min-height: 92vh;
    background-image: url('assets/posada_bg_pattern.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

#sec-portada .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 20% 20%, rgba(228,193,74,.28), transparent 60%), radial-gradient(80% 60% at 80% 30%, rgba(207,169,58,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.7));
}

#sec-portada .brand-logo {
    max-height: 320px;
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

@media (max-width: 991.98px) {
    #sec-portada .img-col {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

#sec-contador .counter-num {
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    font-weight: 800;
}

.hero-pill {
    background: rgba(0,0,0,.65);
    border-radius: 999px;
    padding: .4rem 1.1rem;
}

/* ================================ */
/* LINE-UP (artistas grandes)       */
/* ================================ */
#sec-lineup .artist-card {
    background: #12131A;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,.55);
    transition: transform .3s ease, box-shadow .3s ease;
}

    #sec-lineup .artist-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,.65);
    }

    /* Imagen más grande */
    #sec-lineup .artist-card img {
        width: 100%;
        height: auto;
        max-height: 480px; /* tamaño más grande */
        object-fit: contain; /* muestra el póster completo */
        border-radius: 18px;
    }

/* ================================ */
/* ALIMENTOS & BEBIDAS (más chicos) */
/* ================================ */
#sec-alimentos .menu-card {
    background: #12131A;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    max-width: 400px; /* más angosto */
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}

    /* imagen con límite de altura */
    #sec-alimentos .menu-card img {
        width: 100%;
        height: auto;
        max-height: 220px; /* más baja */
        object-fit: contain;
        display: block;
    }

/* para pantallas grandes, poner 2 por fila */
@media (min-width: 992px) {
    #sec-alimentos .col-lg-6 {
        flex: 0 0 auto;
        width: 40%; /* 2 más pequeñas en el centro */
    }
}

/* ======================= */
/* HERO PORTADA (ajustes)  */
/* ======================= */

#portada_hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

    /* por si no lo tienes envuelto en #sec-portada */
    #portada_hero .overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(80% 60% at 20% 20%, rgba(228,193,74,.28), transparent 60%), radial-gradient(80% 60% at 80% 30%, rgba(207,169,58,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.8));
    }

    #portada_hero .container {
        position: relative;
    }

/* Píldora (Festival · Música · Convivio) */
#portada_pre.hero-pill {
    font-family: var(--rr-ff-p);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    background: rgba(0,0,0,.75);
    border-radius: 999px;
    padding: .45rem 1.3rem;
    border: 1px solid rgba(255,255,255,.18);
}

/* TÍTULO GRANDE */
#portada_titulo.title-xxl {
    font-family: var(--rr-ff-h);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 6px 25px rgba(0,0,0,.85);
    margin-bottom: .8rem;
}

/* FECHA / SUBTÍTULO DORADO */
#portada_intro.portada-intro {
    font-family: var(--rr-ff-h);
    font-size: 1.8rem;
    line-height: 1.25;
    color: var(--gold);
    text-shadow: 0 4px 18px rgba(0,0,0,.8);
    margin-bottom: .6rem;
}

/* TEXTO INFERIOR (descripción) */
#portada_html.portada-html {
    font-family: var(--rr-ff-p);
    font-size: .95rem;
    line-height: 1.5;
    color: rgba(255,255,255,.9);
    max-width: 34rem;
}

/* Botón de llamada a la acción */
#portada_hero .btn.btn-primary {
    padding-inline: 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

/* Columna de imagen */
#portada_hero .img-col img {
    max-width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,.75);
}

/* Orden en mobile: imagen arriba */
@media (max-width: 991.98px) {
    #portada_hero .img-col {
        order: -1;
        margin-bottom: 1.8rem;
    }
}

/* Ajustes tipográficos mobile */
@media (max-width: 576px) {
    #portada_titulo.title-xxl {
        font-size: clamp(2.2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    #portada_intro.portada-intro {
        font-size: 1.65rem;
        line-height: 1.35;
    }

    #portada_pre.portada-pre {
        font-size: 2.00rem;
        line-height: 1.35;
    }

    #portada_html.portada-html {
        font-size: .9rem;
    }
}

/* ============================ */
/* OPTIMIZACIÓN PARA MÓVIL     */
/* ============================ */

@media (max-width: 576px) {

    /* Reduce ligeramente el tamaño del logo de portada */
    #portada_hero .img-col img {
        max-width: 88%;
    }

    /* Ajusta el título para mejor lectura */
    #portada_titulo {
        line-height: 1.15;
    }

    /* Más aire entre la fecha y el texto blanco */
    #portada_intro {
        margin-bottom: 0.9rem;
    }

    /* Ajuste leve al texto HTML (descripción extra) */
    .portada-html {
        font-size: 0.92rem;
        line-height: 1.4;
    }

    /* Centrado mejorado de los bloques */
    #portada_hero .col-lg-6 {
        text-align: left;
    }

    /* Ajuste del badge (Festival – Música – Convivio) */
    .hero-pill {
        padding: .32rem 1rem;
        font-size: .85rem;
    }
}

