/* ================================================================
   VELARIO — home.css
   CSS specifico della Home page.
   Da caricare DOPO velario.css.
   In WP: corrisponde al CSS di blocco della Home Kadence.
   ================================================================ */

/* ── HERO HOME ──
 * Quando disponibile, sostituire il background con:
 *   background-image: url('../images/velario-hero-home.webp');
 *   background-size: cover;
 *   background-position: center 30%;
 * Dimensioni immagine target: 1920×1080px, WebP q82
 * Brief AI: spazio architettonico romano, luce radente dorata,
 *           nessun volto identificabile, palette scura con accenti caldi
 */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--section-pad-h) 100px;
    background-color: var(--v-black);
    background-image: url('../images/velario-hero-home.webp');
    overflow: hidden;
}

/* Overlay — rimane attivo anche dopo inserimento immagine reale.
 * Garantisce leggibilità del testo su qualsiasi fotografia.
 * Se l'immagine è già scura, ridurre 0.88 → 0.55. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.90) 0%,
        rgba(10, 10, 10, 0.65) 50%,
        rgba(10, 10, 10, 0.30) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1  { margin-bottom: 28px; }
.hero-content .lead {
    max-width: 540px;
    opacity: 0.70;
    margin-bottom: 48px;
}

/* Indicatore di scroll laterale */
.scroll-cue {
    position: absolute;
    bottom: 40px;
    right: var(--section-pad-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.30;
    z-index: 2;
}
.scroll-cue span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    writing-mode: vertical-rl;
    color: var(--v-stone-text);
}
.scroll-cue::after {
    content: '';
    display: block;
    width: 1px;
    height: 56px;
    background: var(--v-gold);
    animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50%       { transform: scaleY(0.4); opacity: 0.2; }
}

/* ── PILLARS HOME (sezione stone, evocativa) ── */
.pillars-band {
    /* Nessun padding verticale — aderisce sopra e sotto alle sezioni adiacenti */
    padding: 0;
}
.pillar-item {
    text-align: center;
    padding: 56px 20px;
    border-right: 1px solid rgba(10, 10, 10, 0.10);
    cursor: pointer;
    transition: background var(--transition);
}
.pillar-item:last-child  { border-right: none; }
.pillar-item:hover       { background: rgba(201, 164, 76, 0.06); }

.pillar-number {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--v-gold);
    margin-bottom: 18px;
}
.pillar-name {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: var(--v-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.pillar-link {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--v-gold-dark);
    opacity: 0.6;
    transition: opacity var(--transition);
}
.pillar-item:hover .pillar-link { opacity: 1; }

/* ── SEZIONE "CHI È VELARIO" — visual col ── */
.visual-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── COME LAVORIAMO — 3 passi (sezione stone) ── */
.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(10, 10, 10, 0.10);
    line-height: 1;
    margin-bottom: 0;
}
.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--v-black);
    margin-bottom: 12px;
}
.step-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--v-slate);
    font-weight: 300;
}

/* ── SEZIONE VALORI (3 col, scuro) ── */
.value-item h4  { color: var(--v-gold); margin-bottom: 12px; }

/* ── ATMOSPHERIC BANNER (immagine orizzontale tra le card) ──
 * Placeholder — sostituire con <img> quando disponibile.
 * Dimensioni target: 1280×280px, WebP q82, crop panoramico
 * Brief AI: ambiente romano/mediterraneo, luce serale,
 *           silenzio visivo, nessun volto
 */
.atmosphere-banner {
    width: 100%;
    height: 200px;
    margin-top: 48px;
}

/* ── RESPONSIVE HOME ── */
@media (max-width: 768px) {
    .hero {
        align-items: center;
        padding: 100px 24px 80px;
        min-height: 100svh;
    }
    .scroll-cue { display: none; }

    .pillar-item {
        border-right: none;
        border-bottom: 1px solid rgba(10, 10, 10, 0.10);
    }
    .pillar-item:last-child { border-bottom: none; }
}