/* =========================
           BLOC 1
========================= */
.bunkers-hero {
  background: #0f1218;
  border-bottom: 1px solid rgba(212, 176, 79, 0.14);
}

.bunkers-hero__inner {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: stretch;
  min-height: 650px;
}

/* colonne gauche */
.bunkers-hero__left {
  display: flex;
  align-items: center;
  background: #0f1218;
  padding: 60px 70px 60px 90px;
}

/* contenu */
.bunkers-hero__content {
  width: 100%;
  max-width: 560px;
}

.bunkers-hero__tag {
  display: inline-block;
  margin-bottom: 22px;
  color: #e0c15a;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bunkers-hero__content h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 600;
}

.bunkers-hero__content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.75;
  max-width: 520px;
}

.bunkers-hero__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* colonne droite */
.bunkers-hero__right {
  position: relative;
  overflow: hidden;
}

.bunkers-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bunkers-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 7, 15, 0.70) 0%,
    rgba(4, 7, 15, 0.20) 12%,
    rgba(4, 7, 15, 0.03) 22%,
    rgba(4, 7, 15, 0) 32%
  );
  pointer-events: none;
  z-index: 2;
}

.bunkers-card__text {
  margin-bottom: 12px;
}

.bunkers-card__price {
  margin-top: 14px;
}

.price-label {
  display: block;
  font-size: 14px;
  color: #d4af4a;
  font-weight: 600;
}

.price-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}
/* =========================
      RESPONSIVE BLOC 1
========================= */

@media (max-width: 1400px) {
  .bunkers-hero__inner {
    grid-template-columns: 1fr 1.2fr;
  }

  .bunkers-hero__left {
    padding: 55px 55px 55px 70px;
  }

  .bunkers-hero__content h1 {
    font-size: 52px;
  }

  .bunkers-hero__content p {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .bunkers-hero__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .bunkers-hero__left {
    padding: 50px 45px 50px 60px;
  }

  .bunkers-hero__content {
    max-width: 500px;
  }

  .bunkers-hero__content h1 {
    font-size: 46px;
  }

  .bunkers-hero__content p {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .bunkers-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bunkers-hero__right {
    order: 2;
    min-height: 340px;
  }

  .bunkers-hero__left {
    order: 1;
    padding: 50px 32px 60px;
  }

  .bunkers-hero__content {
    max-width: 100%;
  }

  .bunkers-hero__content h1 {
    font-size: 35px;
    max-width: 100%;
  }

  .bunkers-hero__content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .bunkers-hero__left {
    padding: 42px 18px 52px;
  }

  .bunkers-hero__right {
    min-height: 250px;
  }

  .bunkers-hero__tag {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .bunkers-hero__content h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .bunkers-hero__content p {
    font-size: 13px;
    margin-bottom: 28px;
  }
}

/* =========================
           BLOC 2
========================= */

.bunkers-features {
  padding: 110px 20px 90px;
  background:
    radial-gradient(circle at top center, rgba(212, 176, 79, 0.06), transparent 35%),
    linear-gradient(180deg, #232730 0%, #1c2027 100%);
}

.bunkers-features__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* intro */
.bunkers-features__intro {
  max-width: 960px;
  margin: 0 auto 70px;
  text-align: center;
}

.bunkers-features__intro h2 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
}

.bunkers-features__intro p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

/* grid */
.bunkers-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* cartes */
.bunkers-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 18, 28, 0.98) 0%, rgba(10, 14, 22, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  width: 100%;
  min-width: 0;
}

/* image */
.bunkers-card__image {
  height: 230px;
}

.bunkers-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

/* body */
.bunkers-card__body {
  min-width: 0;
  padding: 22px 22px 26px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* icône */
.bunkers-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid rgba(212, 176, 79, 0.35);
  color: #e0c15a;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 176, 79, 0.05);
  transition: all 0.3s ease;
}

/* titre */
.bunkers-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
}

.bunkers-card__text {
  margin: 6px 0 14px;
  color: #CFA84E !important;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.5px;
}


/* texte */
.bunkers-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

/* hover */
.bunkers-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 176, 79, 0.6);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 176, 79, 0.25);
}

.bunkers-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(
    120deg,
    rgba(212, 176, 79, 0.15),
    transparent 40%
  );
}

.bunkers-card__price .price-label {
  font-size: 12px;
  opacity: 0.9;
}

.bunkers-card__price .price-value {
 font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
}

.bunkers-card__infos {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
}

/* =========================
      RESPOSIVE BLOC 2
========================= */

@media (max-width: 1100px) {
  .bunkers-features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bunkers-features {
    padding: 80px 20px;
  }

  .bunkers-features__intro h2 {
    font-size: 25px;
  }

  .bunkers-features__intro p {
    font-size: 13px;
  }

  .bunkers-features__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bunkers-card__image {
    height: 200px;
  }

  .bunkers-card__price .price-label {
    font-size: 13px;
    font-weight: 100;
  }

    .bunkers-card__price .price-value {
    font-size: 20px;
  }


}