@charset "utf-8";
/* smokes-home.css — secciones del home: hero, featured, categorías, newsletter */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    /* body trae padding-top para el nav/topbar fijos (smokes-nav.css) — el hero
       lo cancela y crece lo mismo para que el fondo arranque en el borde real
       de la ventana en vez de dejar una franja vacía arriba. */
    margin-top: calc(-1 * (var(--nav-h) + var(--smk-topbar-h)));
    min-height: calc(90vh + var(--nav-h) + var(--smk-topbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(../img/background/Lucille.webp);
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero h1 span { color: var(--accent); }
.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FEATURED ─────────────────────────────────────────────────── */
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    margin: 0;
}
.featured-img { overflow: hidden; }
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-img:hover img { transform: scale(1.04); }
.featured-body {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    border-left: 1px solid var(--border);
}
.featured-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.featured-body h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}
.featured-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 380px;
}

/* ── CATEGORÍAS ───────────────────────────────────────────────── */
.categories { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
}
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-grid .cat-wide { grid-column: span 2; }
.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
    display: block;
}
.cat-card.cat-wide { aspect-ratio: 16/7; }
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.55);
}
.cat-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 1.5rem; }
.cat-info h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.cat-info span { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.cat-arrow {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.cat-card:hover .cat-arrow { opacity: 1; }

/* ── MVP REWARDS TEASER ──────────────────────────────────────────── */
.mvp-teaser {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 2rem;
    text-align: center;
}
.mvp-teaser-copy {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .featured { grid-template-columns: 1fr; }
    .featured-body { padding: 2rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-grid .cat-wide { grid-column: span 1; }
}
