/* =========================================
   Equilibre – Sport page section
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;400;600;700&family=Poppins:wght@400;700&display=swap');

.equilibre-sport-section *,
.equilibre-sport-section *::before,
.equilibre-sport-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.equilibre-sport-section {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 40px;
}

/* ---- Main block ---- */
.equilibre-sport-section .equilibre-sport-block {
  background-color: #c8151b;
  border-radius: 40px;
  padding: 48px 90px 40px;
  max-width: 1200px;
  width: 100%;
}

/* ---- Title ---- */
.equilibre-sport-section .main-title {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.equilibre-sport-section .main-title strong {
  font-weight: 900;
}

/* ---- Three-column features ---- */
.equilibre-sport-section .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 36px;
}

.equilibre-sport-section .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ---- Photo cards ---- */
.equilibre-sport-section .feature-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #a01015; /* fallback if image missing */
}

.equilibre-sport-section .feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Labels below photos ---- */
.equilibre-sport-section .feature-label {
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size:  2.25rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.35;
}

.equilibre-sport-section .feature-label strong,
.equilibre-sport-section .feature-label .highlight {
  font-weight: 900;
}

/* ---- Buttons row ---- */
.equilibre-sport-section .buttons-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Left pill – plain div, not a link */
.equilibre-sport-section .btn-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #c8151b;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Right CTA – anchor tag */
.equilibre-sport-section .btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: #510200;
  color: #ffffff !important;
  border-radius: 30px;
  padding: 16px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.equilibre-sport-section .btn-book:hover {
  background: #2d1010;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.equilibre-sport-section .btn-book:active {
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .equilibre-sport-section .equilibre-sport-block {
    padding: 32px 20px 28px;
    border-radius: 12px;
  }

  .equilibre-sport-section .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .equilibre-sport-section .buttons-row {
    flex-direction: column;
    gap: 14px;
  }

  .equilibre-sport-section .btn-price,
  .equilibre-sport-section .btn-book {
    width: 100%;
    flex: unset;
  }
}
