/* ======= CSS HOME ======= */
/* ===== FIX ASTRA : enlever le padding/margin auto au-dessus ===== */
body.home .site-content,
body.front-page .site-content,
body.home .content-area,
body.front-page .content-area,
body.home .ast-container,
body.front-page .ast-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

:root{
  --dh-bg: #0b1220;
  --dh-bg2:#0a0f1a;
  --dh-text:#e9eef6;
  --dh-muted:rgba(233,238,246,.78);
  --dh-card: rgba(255,255,255,.05);
  --dh-border: rgba(255,255,255,.09);
  --dh-green:#66d63a;
  --dh-shadow: 0 16px 40px rgba(0,0,0,.45);
  --dh-hero-drop: 160px;
  --dh-header-h: 0px; /* teste 90 / 100 / 110 / 120 */
}

.dh-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.dh-home{
  background: linear-gradient(180deg, #0b1220 0%, #08101d 100%);
  color: var(--dh-text);
}

/* Sur la home uniquement (si ton body a une classe home/front-page) */
/*body.home .dh-home,
body.front-page .dh-home{
  padding-top: var(--dh-header-h);
}*/

/* Si tu n’as pas .dh-home, applique au hero */
/*body.home .dh-hero,
body.front-page .dh-hero{
  margin-top: var(--dh-header-h);
}*/

/* HERO */
.dh-hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  margin-top: var(--dh-header-h);
}

.dh-hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.dh-hero-video{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 15%; /* centre horizontal, focus plus haut */
  display:block;
}

.dh-hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 600px at 50% 40%, rgba(0,0,0,.18), rgba(0,0,0,.55));
}

.dh-hero-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;

  /* ✅ un seul padding, et on ajoute le drop ici */
  padding: calc(90px + var(--dh-hero-drop)) 5vw 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.dh-hero-left{
  max-width: 520px;
}

.dh-hero-tagline{
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--dh-text);
  opacity:.92;
}

.dh-hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
  user-select:none;
}

.dh-btn:hover{ transform: translateY(-1px); }

.dh-btn-primary{
  background: var(--dh-green);
  color: #07100a;
}

.dh-btn-ghost{
  background: rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.20);
  color: var(--dh-text);
}

.dh-hero-right{
  min-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 0;
}

.dh-hero-info{
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--dh-shadow);
}

.dh-hero-info-small{
  font-size: 13px;
  opacity: .85;
  margin-bottom: 6px;
}

.dh-hero-info-title{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.dh-hero-info-desc{
  font-size: 13px;
  opacity: .85;
}

/* Sections génériques */
.dh-section{
  padding: 56px 0;
}

.dh-section--dark{
  background: radial-gradient(900px 520px at 50% 10%, rgba(255,255,255,.06), rgba(255,255,255,0) 55%);
}

.dh-section-title{
  font-size: 44px;
  letter-spacing: .8px;
  margin: 0 0 24px;
  align-content: center;
}

/* Responsive HERO */
@media (max-width: 900px){
  :root{ --dh-hero-drop: 40px; } /* moins de descente sur mobile */
  .dh-hero{
    min-height: 520px;
  }
  .dh-hero-video{
    object-position: 50% 0%;
  }
  .dh-hero-content{
    padding: 70px 18px 60px;
    flex-direction: column;
    align-items: flex-start;
  }
  .dh-hero-right{
    width:100%;
    justify-content:flex-start;
  }
  .dh-hero-info{
    max-width: 520px;
  }
}


/* =========================
   AJOUTS : PAROLES + BADGES
   ========================= */

/* PAROLES DE JOUEURS */
.dh-testimonials .dh-section-title{
  text-align:center;
  margin-bottom: 28px;
}

.dh-testimonials .dh-quotes{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.dh-testimonials .dh-quote{
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dh-testimonials .dh-quote::before{
  content: "“";
  position:absolute;
  top: 10px;
  left: 14px;
  font-size: 48px;
  line-height: 1;
  opacity: 0.25;
}

.dh-testimonials .dh-quote p{
  margin: 0 0 14px;
  font-style: italic;
  opacity: 0.92;
}

.dh-testimonials .dh-quote cite{
  display: block;
  font-style: normal;
  font-weight: 800;
  opacity: 0.95;
}

@media (max-width: 1024px){
  .dh-testimonials .dh-quotes{
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

/* BADGES (Paiement/Livraison/Service) */
.dh-trust .dh-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.dh-trust .dh-badge{
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.dh-trust .dh-badge strong{
  display: block;
  font-size: 16px;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.dh-trust .dh-badge span{
  display: block;
  opacity: 0.88;
  line-height: 1.35;
}

@media (max-width: 900px){
  .dh-trust .dh-badges{
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}
