/* ============================
   SALON SPORT NATURE 2027
   CSS INFOS PRATIQUES — ssn-infos-pratiques.php uniquement
   ============================ */

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  background: var(--navy); padding: 8rem 0 5rem;
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,123,103,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}

.page-hero-breadcrumb span { color: var(--gold); }

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
  color: var(--white); line-height: 1;
}

.page-hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-top: 1rem; max-width: 600px;
}

/* ============================
   GRILLE INFOS
   ============================ */
.infos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 3rem;
}

.info-card {
  background: var(--white); border-radius: 8px; padding: 2.5rem;
  box-shadow: var(--shadow-soft); border-left: 4px solid var(--green);
}

.info-card-icon { font-size: 2rem; color: var(--green); margin-bottom: 1.25rem; }

.info-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem;
}

.info-card p {
  color: #556; line-height: 1.8; margin-bottom: 0.75rem; font-size: 0.95rem;
}

.info-card ul { color: #556; line-height: 1.8; }

.info-card ul li {
  padding: 0.25rem 0; display: flex; align-items: flex-start; gap: 0.5rem;
}

.info-card ul li::before { content: '→'; color: var(--green); flex-shrink: 0; }

/* ============================
   FAQ
   ============================ */
.faq-item {
  border-bottom: 1px solid rgba(0,46,82,0.1);
  padding: 1.25rem 0; cursor: pointer;
}

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--navy); font-size: 0.95rem;
}

.faq-question i { transition: transform 0.3s; color: var(--green); }
.faq-item.open .faq-question i { transform: rotate(45deg); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .infos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding: 6rem 0 3rem; }
}
