:root {
  /* ta couleur marque */
  --brand: #33bce6;
  --brand-rgb: 51, 188, 230;

  /* Bootstrap primary */
  --bs-primary: var(--brand);
  --bs-primary-rgb: var(--brand-rgb);
  --bs-link-color: var(--brand);
  --bs-link-hover-color: #229dc0; /* un peu plus foncé */
}

/* Bouton primary */
.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #29add4;
  --bs-btn-hover-border-color: #29add4;
  --bs-btn-active-bg: #229dc0;
  --bs-btn-active-border-color: #229dc0;
  --bs-btn-disabled-bg: var(--brand);
  --bs-btn-disabled-border-color: var(--brand);
}

/* Bouton outline primary */
.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-active-bg: #229dc0;
  --bs-btn-active-border-color: #229dc0;
}
html,
body {
  height: 100%;
}
body {
  background: #f8fafc;
  color: var(--text);
}

/* BANNER: image entière visible (aucune découpe) */

.banner .banner-inner {
  padding: 0.5rem 0;
}
.banner-img {
  width: 100%;
  height: auto; /* affiche l'image complète */
  display: block;
  object-fit: contain; /* au cas où une hauteur max serait fixée */
}

.section {
  padding: 2.5rem 0;
}
.elevated {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 0.6rem 0;
}
.timeline time {
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.toggle-group .btn {
  min-width: 88px;
}

@media (max-width: 575.98px) {
  .timeline li {
    grid-template-columns: 120px 1fr;
  }
}

/* STYLE MODALE MENTIONS LÉGALES */
.modal-content {
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.15);
}

.modal-title {
  color: var(--brand);
}

.modal-body p {
  margin-bottom: 1rem;
  color: #333;
}

.modal-body a {
  color: var(--brand);
  text-decoration: none;
}
.modal-body a:hover {
  text-decoration: underline;
}
