/* ═══════════════════════════════════════════════════════
   HAW — Poulettes l'Assaut Hell A Woman
   Styles complémentaires à styles.css
   ═══════════════════════════════════════════════════════ */

/* ── HERO SOUS-PAGE ── */
.hero {
  min-height: 65vh;
}

.haw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: flex-end;
  width: 100%;
  max-width: 1100px;
}

.haw-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s ease .5s forwards;
}

.haw-hero-logo img {
  max-width: 280px;
  width: 100%;
  border-radius: 0px;
  background: #fff;
  padding: 1.5rem;
  border: 2px solid var(--crimson);
  box-shadow: 8px 8px 0 rgba(0,0,0,.5);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #0D0D0F;
  padding: .7rem 2rem;
  border-bottom: 1px solid rgba(227,6,19,.15);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.breadcrumb-inner a:hover {
  color: #fff;
}

.breadcrumb-inner span {
  opacity: .5;
}

/* ── HISTOIRE / STORY GRID ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-img {
  overflow: hidden;
  border: 2px solid rgba(227,6,19,.2);
}

.story-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.story-img:hover img {
  transform: scale(1.05);
}

.story-img.main {
  grid-column: 1 / -1;
}

.story-img.main img {
  height: 250px;
  object-fit: contain;
  background: #1A1A1E;
  padding: 1.5rem;
}

.story-text {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--muted);
}

.story-text p {
  margin-bottom: 1.1rem;
}

.story-text strong {
  color: var(--ink);
}

.story-text a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}

.story-text a:hover {
  text-decoration: underline;
}

/* ── CREW CARDS ── */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.crew-card {
  background: #1A1A1E;
  border: 2px solid rgba(227,6,19,.15);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all .3s;
}

.crew-card:hover {
  border-color: var(--crimson);
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 var(--crimson);
}

.crew-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(227,6,19,.3);
}

.crew-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .3rem;
}

.crew-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION SOMBRE (actions terrain) ── */
.haw-dark {
  background: #0A0A0B;
  position: relative;
  overflow: hidden;
}

.haw-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%23E30613' opacity='.05' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%23E30613' opacity='.04' transform='rotate(15 75 35)'/%3E%3Cellipse cx='40' cy='70' rx='10' ry='6' fill='%23E30613' opacity='.06' transform='rotate(-30 40 70)'/%3E%3C/svg%3E");
}

.haw-dark > .container {
  position: relative;
  z-index: 1;
}

/* ── ACTIONS GRID ── */
.haw-act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.haw-act-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2rem 1.5rem;
  transition: all .3s;
}

.haw-act-card:hover {
  background: rgba(227,6,19,.07);
  border-color: var(--crimson);
  transform: translateY(-3px);
}

.haw-act-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.haw-act-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: .6rem;
}

.haw-act-desc {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
}

/* ── REJOINDRE CARD ── */
.haw-join {
  background: var(--crimson);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 3rem;
  border: 2px solid var(--crimson-deep);
  box-shadow: 8px 8px 0 rgba(0,0,0,.4);
}

.haw-join::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%238B001A' opacity='.4' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%238B001A' opacity='.35' transform='rotate(15 75 35)'/%3E%3C/svg%3E");
}

.haw-join > * {
  position: relative;
  z-index: 1;
}

.haw-join-script {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem;
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.haw-join h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,.3);
}

.haw-join p {
  font-size: .97rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.haw-join-btns {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.haw-join-links {
  display: flex;
  gap: .65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.haw-social-link {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  transition: all .2s;
}

.haw-social-link:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── SECTION RETOUR ASSO MÈRE ── */
.haw-back-section {
  background: #0D0D0F;
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(227,6,19,.12);
}

.haw-back-section p {
  font-size: .97rem;
  color: var(--muted);
  max-width: 500px;
  margin: 1rem auto 2.5rem;
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .haw-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .haw-hero-logo {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .haw-act-grid {
    grid-template-columns: 1fr 1fr;
  }

  .haw-join {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 660px) {
  .haw-act-grid {
    grid-template-columns: 1fr;
  }

  .crew-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-imgs {
    grid-template-columns: 1fr;
  }

  .haw-join h3 {
    font-size: 2rem;
  }
}
