/* assets/css/home.css — Page d'accueil VeRo */

/* ── HERO — Split 60/40 desktop ── */
.hero {
    display: grid;
    grid-template-columns: 60% 40%;
    background: var(--vero-orange);
}
.hero-l {
    padding: 60px 68px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-l-content { position: relative; z-index: 2; }
.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vero-green);
    margin-bottom: 14px;
}
.hero-l h1 {
    font-size: 50px;
    color: var(--vero-white);
    margin-bottom: 16px;
    letter-spacing: -.5px;
}
.hero-l p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.87);
    max-width: 420px;
    margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btn-w {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    background: var(--vero-white);
    color: var(--vero-orange);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.hero-btn-w:hover { background: var(--vero-black); color: var(--vero-white); text-decoration: none; }
.hero-btn-g {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 12px;
    color: rgba(255,255,255,.9);
    border: 1.5px solid rgba(255,255,255,.4);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.hero-btn-g:hover { border-color: rgba(255,255,255,.8); color: var(--vero-white); text-decoration: none; }

/* Éléments graphiques VeRo dans hero-l */
.hero-vero-el {
    position: absolute;
    pointer-events: none;
}
.hero-vero-el.el-marron { top: 40px; right: 40px; width: 170px; opacity: .9; z-index: 1; }
.hero-vero-el.el-vert   { bottom: 80px; right: 360px; width: 170px; z-index: 0; }
.hero-vero-el.el-elica  { bottom: 20px; right: 140px; width: 200px; z-index: 0; }

.hero-r {
    position: relative;
    overflow: hidden;
}
.hero-r-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── SÉPARATEUR "À DÉCOUVRIR" ── */
.sep {
    background: var(--vero-violet);
    border-top: 3px solid var(--vero-violet);
    display: flex;
    align-items: center;
    padding: 0 56px;
    height: 56px;
    position: relative;
}
.sep .sh-label { color: rgba(255,255,255,.5); }
.sep .sh-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); }

/* ── 3 CARTES ACTIVITÉS ── */
.activity-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 3px solid var(--vero-violet);
}
.activity-card {
    border-right: 1px solid var(--vero-border);
    text-decoration: none;
    color: var(--vero-black);
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}
.activity-card:last-child { border-right: none; }
.activity-card:hover { background: var(--vero-gray); text-decoration: none; }
.activity-card:hover .card-photo { filter: brightness(.88); }
.card-photo {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: filter var(--transition);
}
.card-body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    flex: 1;
}
.card-lnk {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vero-violet);
    margin-top: 20px;
    border-top: 1px solid var(--vero-border);
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}
.activity-card:hover .card-lnk {
    color: var(--vero-orange);
    transform: translateX(5px);
}

/* ── VOYAGER ── */
.voyager-section {
    background: var(--vero-gray);
    border-top: 3px solid var(--vero-cyan);
    padding: 44px 56px;
}
.voyager-section .sh { margin-bottom: 28px; }
.voyager-section .sh-label { color: var(--vero-cyan); }
.voyager-section .sh-title { font-size: 26px; }
.voyager-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vlink {
    background: var(--vero-white);
    border: 1.5px solid var(--vero-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--vero-black);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition);
}
.vlink:hover { border-color: var(--vero-cyan); background: #f0fafd; text-decoration: none; }
.vlink-icon { font-size: 22px; }
.vlink h4 { font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.vlink p  { font-family: var(--font-body); font-size: 12px; color: #777; line-height: 1.4; }
.vlink-cta {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vero-cyan);
    margin-top: 4px;
}

/* ── VALLÉES ── */
.vallees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    border-top: 3px solid var(--vero-green);
}
.vallees-txt {
    background: var(--vero-green);
    padding: 68px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.vallees-txt::before {
    content: '';
    position: absolute;
    right: -80px; bottom: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: var(--vero-orange);
    opacity: .18;
}
.vallees-txt .sh { position: relative; z-index: 1; }
.vallees-txt .sh-label { color: rgba(255,255,255,.6); }
.vallees-txt .sh-title { color: var(--vero-white); font-weight: 500; font-size: 34px; }
.vallees-txt p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    max-width: 360px;
    position: relative; z-index: 1;
}
.vallees-btn {
    background: var(--vero-white);
    color: var(--vero-green);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 11px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    position: relative; z-index: 1;
    transition: var(--transition);
    width: fit-content;
}
.vallees-btn:hover { background: var(--vero-gray); text-decoration: none; }
.vallees-photo { background: url('../img/hero/vallee.webp') center/cover; }

/* ── ACTUALITÉS ── */
.actus {
    padding: 52px 56px;
    border-bottom: 1px solid var(--vero-border);
    background: var(--vero-white);
    border-top: 3px solid var(--vero-orange);
}
.actus .sh { margin-bottom: 20px; }
.actus .sh-label { color: var(--vero-orange); }
.actus .sh-title { font-size: 24px; }
.actus-sub { font-family: var(--font-body); font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 24px; }
.fb-card { background: var(--vero-gray); border-radius: var(--radius); padding: 18px; margin-bottom: 20px; }
.fb-top { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.fb-av {
    width: 36px; height: 36px;
    background: var(--vero-orange);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-weight: 700; font-size: 9px;
    color: var(--vero-white);
    letter-spacing: 1px;
    flex-shrink: 0;
}
.fb-nm { font-family: var(--font-display); font-weight: 600; font-size: 12px; }
.fb-dt { font-family: var(--font-body); font-size: 10px; color: #aaa; }
.fb-tx { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: #333; }
.btn-fb {
    background: #1877f2;
    color: var(--vero-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    padding: 10px 18px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
}
.btn-fb:hover { background: #1558b0; text-decoration: none; }

/* ── PARTENAIRES ── */
.partners {
    background: var(--vero-gray);
    padding: 52px 56px;
    border-top: 3px solid var(--vero-brown);
}
.partners .sh { margin-bottom: 28px; }
.partners .sh-label { color: var(--vero-brown); }
.partners .sh-title { color: var(--vero-black); }
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.p-card {
    background: var(--vero-white);
    border: 1px solid var(--vero-border);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background var(--transition), border-color var(--transition);
}
.p-card:hover { background: #fff; border-color: var(--vero-brown); text-decoration: none; }
.p-card-bar { height: 3px; border-radius: 1px; margin-bottom: 4px; }
.p-card-logo { height: 36px; display: flex; align-items: center; }
.p-card-logo img { max-height: 32px; max-width: 100%; object-fit: contain; filter: none; opacity: 1; }
.p-card-logo-ph {
    height: 32px; width: 80px;
    background: var(--vero-border);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 8px; letter-spacing: 1px; text-transform: uppercase;
    color: #aaa;
}
.p-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--vero-black); line-height: 1.2; }
.p-card p  { font-family: var(--font-body); font-size: 11px; color: var(--color-text-light); line-height: 1.4; flex: 1; }
.p-card-lnk { font-family: var(--font-body); font-weight: 700; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--vero-brown); }
.p-strip {
    background: var(--vero-white);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-strip img { width: 100%; max-height: 150px; object-fit: contain; }

