/* ── HERO V2 — Direction B · Design Handoff 2026-04-29 ── */

/* Nav — liens poussés à droite sans le bouton CTA */
.nav__links {
  margin-left: auto;
}

/* Mobile nav — scrollable si le contenu dépasse l'écran */
@media (max-width: 960px) {
  .nav__links {
    overflow-y: auto;
    padding: 40px 0 !important;
  }
}

/* Overlays */
.hv2-overlay-main {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.10) 100%);
}

.hv2-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
}

/* Bloc contenu — desktop : ancré bas-gauche */
.hv2-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 64px 44px;
}

/* Logo B doré — position absolue fixe, identique sur toutes les pages */
.hv2-logo-b {
  position: absolute;
  bottom: 360px;
  left: -20px;
  height: 280px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
}

/* Bloc titre + CTAs */
.hv2-bottom-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Règle bronze */
.hv2-rule {
  width: 40px;
  height: 1px;
  background: #8B6F47;
  opacity: 0.8;
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* Nom de lieu en or */
.hv2-location {
  color: #C9A96E;
}

/* H1 */
.hv2-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin: 0;
  max-width: 700px;
}

.hv2-h1 {
  margin-bottom: 28px;
}

/* Sous-titre */
.hv2-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin: 0 0 24px 0;
  max-width: 480px;
  line-height: 1.6;
}

/* CTAs */
.hv2-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hv2-cta-primary {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.07em;
  padding: 15px 32px;
  background: #8B6F47;
  color: #F6F1E8;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.3s;
}

.hv2-cta-primary:hover {
  background: #7a5f38;
  color: #F6F1E8;
}

.hv2-cta-secondary {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #A68B63;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.hv2-cta-secondary:hover {
  color: #C9A96E;
}

/* Scroll indicator — bas droite */
.hv2-scroll {
  position: absolute;
  bottom: 28px;
  right: 64px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hv2-scroll-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── MOBILE ≤ 768px ── */
@media (max-width: 768px) {

  .hv2-overlay-main {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.30) 30%, rgba(0,0,0,0.72) 100%);
  }

  .hv2-overlay-bottom {
    display: none;
  }

  /* Layout vertical space-between : logo en haut, titre en bas */
  .hv2-content {
    top: 68px;
    justify-content: space-between;
    padding: 0 24px;
    padding-bottom: max(40px, env(safe-area-inset-bottom, 40px));
  }

  /* Logo B centré, remplit l'espace disponible */
  .hv2-logo-b {
    position: static;
    bottom: auto;
    left: auto;
    height: auto;
    width: 85%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    flex: 1;
    align-self: center;
    object-fit: contain;
  }

  /* Règle plus courte */
  .hv2-rule {
    width: 28px;
    margin-bottom: 18px;
  }

  /* H1 */
  .hv2-h1 {
    font-size: 44px;
    line-height: 1.0;
  }

  .hv2-h1 {
    margin-bottom: 18px;
  }

  /* Sous-titre */
  .hv2-sub {
    font-size: 11px;
    margin-bottom: 28px;
  }

  /* CTAs empilés */
  .hv2-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hv2-cta-primary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 14px 28px;
  }

  /* Scroll indicator masqué sur mobile */
  .hv2-scroll {
    display: none;
  }
}

/* ── Footer standard B.EVENT ── */
footer{background-color:var(--dark);color:rgba(255,255,255,.6);padding:clamp(80px,10vw,120px) 0 40px}
.footer-brand{text-align:center;margin-bottom:clamp(48px,6vw,80px)}
.footer-logo{height:clamp(110px,13vw,160px);width:auto;margin:0 auto 20px}
.footer-tagline{font-family:var(--font-title);font-size:clamp(15px,1.6vw,19px);font-style:italic;font-weight:300;line-height:1.7;color:rgba(255,255,255,.5);max-width:420px;margin:0 auto}
.footer-cols{display:flex;justify-content:center;gap:clamp(48px,8vw,120px);margin-bottom:56px;flex-wrap:wrap}
.footer-col{text-align:center}
.footer-heading{font-family:var(--font-body);font-size:11px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:14px}
.footer-divider{width:30px;height:1px;background:rgba(255,255,255,.1);margin:0 auto 18px}
.footer-nav{display:flex;flex-direction:column;gap:9px}
.footer-nav li{font-size:14px;color:rgba(255,255,255,.45)}
.footer-nav a{font-size:14px;color:rgba(255,255,255,.45);transition:color .3s}
.footer-nav a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:30px;border-top:1px solid rgba(255,255,255,.06);font-size:12px;color:rgba(255,255,255,.3);flex-wrap:wrap;gap:12px}
.footer-bottom a{color:rgba(255,255,255,.3);transition:color .3s}
.footer-bottom a:hover{color:rgba(255,255,255,.6)}
.footer-socials{display:flex;gap:10px}
.footer-ig,.footer-mn{display:flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:5px;padding:5px;color:#fff;transition:transform .3s,opacity .3s}
.footer-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.footer-mn{background:linear-gradient(45deg,#e84e6e,#d63b5c,#c22850)}
.footer-ig:hover,.footer-mn:hover{transform:scale(1.15);opacity:.9}
.footer-ig svg,.footer-mn svg{width:100%;height:100%}
@media(max-width:640px){.footer-cols{gap:32px}.footer-bottom{flex-direction:column;text-align:center}}
