* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #102a43;
  background: #ffffff;
  line-height: 1.5;
}

a {
  text-decoration: none;
}


/* HEADER */

header {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 7%;
  background: white;
  gap: 30px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: #102a43;
  font-weight: 600;
}

nav a:hover {
  color: #0755c9;
}


/* BOUTONS */

.button {
  display: inline-block;
  background: #0755c9;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.button:hover {
  background: #0649ae;
}

.secondary-button {
  display: inline-block;
  text-align: center;
  color: #0755c9;
  border: 2px solid #0755c9;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
}


/* HERO ACCUEIL */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(
      90deg,
      rgba(5, 35, 88, 0.96) 0%,
      rgba(5, 35, 88, 0.78) 45%,
      rgba(5, 35, 88, 0.35) 100%
    ),
    #0755c9;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.03;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}


/* PRÉSENTATION */

.presentation {
  max-width: 1200px;
  margin: auto;
  padding: 100px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.small-title {
  color: #0755c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.presentation h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.presentation p {
  line-height: 1.7;
  margin-bottom: 25px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.stats div {
  background: #f3f7fc;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 130px;
  justify-content: center;
}

.stats strong {
  color: #0755c9;
  font-size: 30px;
  margin-bottom: 5px;
}

.stats span {
  font-size: 14px;
  font-weight: 600;
}


/* SECTIONS ACCUEIL */

.teams,
.club-life,
.partners {
  max-width: 1200px;
  margin: auto;
  padding: 90px 30px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card,
.life-grid article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.team-card h3,
.life-grid h3 {
  margin-top: 16px;
  font-size: 20px;
}

.life-grid p {
  margin-top: 6px;
  color: #6b7c93;
}

.image-placeholder {
  height: 240px;
  background: #e8eef7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c93;
  font-weight: 700;
}

.image-placeholder.large {
  height: 300px;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: #0755c9;
  font-weight: 700;
}


/* INSTAGRAM */

.instagram {
  background: #0755c9;
  color: white;
  padding: 70px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.instagram .small-title {
  color: white;
}

.instagram h2 {
  font-size: 36px;
}

.instagram .button {
  background: white;
  color: #0755c9;
}


/* PARTENAIRES ACCUEIL */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.partner-placeholder {
  min-height: 130px;
  background: #f3f7fc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c93;
  font-weight: 700;
}


/* HERO PAGES */

.page-hero {
  background: #0755c9;
  color: white;
  text-align: center;
  padding: 90px 25px;
}

.page-hero > p:first-child {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.page-hero h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.page-intro {
  max-width: 600px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}


/* PAGE ÉQUIPES */

.teams-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
}

.teams-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.full-team-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

.team-photo-placeholder {
  height: 280px;
  background: #e8eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c93;
  font-weight: 700;
}

.team-info {
  padding: 25px;
}

.team-info h2 {
  font-size: 25px;
  margin-bottom: 8px;
}

.team-info p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.team-level {
  color: #0755c9;
  font-weight: 800;
  margin-bottom: 18px !important;
}

.join-banner {
  margin-top: 70px;
  background: #f3f7fc;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.join-banner h2 {
  font-size: 32px;
}


/* GALERIE */

.gallery-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-button {
  border: none;
  background: #f3f7fc;
  color: #102a43;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.active {
  background: #0755c9;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

.gallery-photo {
  height: 320px;
  background: #e8eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c93;
  font-weight: 700;
}

.gallery-caption {
  padding: 22px;
}

.gallery-caption h2 {
  font-size: 23px;
  margin-bottom: 6px;
}

.gallery-caption p {
  color: #6b7c93;
}


/* PAGE PARTENAIRES */

.partners-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.partner-card {
  background: white;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

.partner-logo-placeholder {
  min-height: 150px;
  background: #f3f7fc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c93;
  font-weight: 700;
  margin-bottom: 18px;
}

.partner-card h2 {
  font-size: 18px;
}

.partner-cta {
  margin-top: 70px;
  background: #f3f7fc;
  border-radius: 20px;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partner-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.partner-cta p {
  line-height: 1.6;
}

.partner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}


/* REJOINDRE LE CLUB */

.join-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
}

.join-intro {
  max-width: 720px;
  margin-bottom: 45px;
}

.join-intro h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.join-intro > p:last-child {
  line-height: 1.7;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.registration-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

.registration-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.registration-card > p {
  line-height: 1.6;
}

.price {
  color: #0755c9;
  font-size: 20px;
  font-weight: 800;
  margin: 25px 0;
}

.registration-note {
  margin-top: 60px;
  background: #f3f7fc;
  padding: 35px;
  border-radius: 18px;
}

.registration-note h2 {
  margin-bottom: 10px;
}

.registration-note p {
  line-height: 1.6;
}


/* CONTACT */

.contact-page {
  max-width: 1100px;
  margin: auto;
  padding: 80px 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 35px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item strong {
  color: #0755c9;
}

.contact-item p {
  margin-top: 7px;
  line-height: 1.6;
}

.contact-form {
  background: #f3f7fc;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 700;
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6e0ec;
  background: white;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 20px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  align-self: flex-start;
}


/* FOOTER */

footer {
  background: #052554;
  color: white;
  padding: 60px 7% 20px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr 1fr;
  gap: 50px;
}

.footer-brand img {
  height: 90px;
  width: auto;
  margin-bottom: 15px;
}

footer h3 {
  font-size: 16px;
  margin-bottom: 18px;
}

footer a {
  display: block;
  color: #dce8f7;
  margin-bottom: 10px;
}

footer p {
  color: #dce8f7;
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
  font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 800px) {

  header {
    min-height: 90px;
    padding: 8px 5%;
  }

  nav {
    display: none;
  }

  .logo img {
    height: 75px;
  }

  header > .button {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 540px;
    padding: 50px 7%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 17px;
  }

  .presentation {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 25px;
  }

  .team-grid,
  .life-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .instagram {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .teams-page-grid,
  .gallery-grid,
  .registration-grid,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .join-banner,
  .partner-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .partner-actions {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}


@media (max-width: 520px) {

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

}/* TARIFS ADHÉSIONS */

.membership-prices {
  max-width: 900px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

.membership-header,
.membership-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  padding: 20px 25px;
}

.membership-header {
  background: #0755c9;
  color: white;
  font-weight: 800;
}

.membership-header span:last-child,
.membership-row strong {
  text-align: right;
}

.membership-row {
  border-bottom: 1px solid #e8eef7;
}

.membership-row:last-child {
  border-bottom: none;
}

.membership-row strong {
  color: #0755c9;
  font-size: 18px;
}

.membership-action {
  max-width: 900px;
  margin-top: 35px;
  text-align: center;
}

.membership-button {
  display: inline-block;
  background: #0755c9;
  color: white;
  padding: 18px 45px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.membership-button:hover {
  background: #0649ae;
}

@media (max-width: 600px) {
  .membership-header,
  .membership-row {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 17px;
  }

  .membership-header {
    font-size: 14px;
  }

  .membership-row {
    font-size: 14px;
  }

  .membership-row strong {
    font-size: 16px;
    white-space: nowrap;
  }
}.contact-page-simple {
  max-width: 1100px;
  margin: auto;
  padding: 80px 30px;
}

.contact-card {
  background: #f3f7fc;
  border-radius: 20px;
  padding: 50px;
}

.contact-card h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-details .contact-item {
  background: white;
  border-radius: 14px;
  padding: 30px;
  margin: 0;
}

.contact-details .contact-item strong {
  color: #0755c9;
  font-size: 13px;
  letter-spacing: 1px;
}

.contact-details .contact-item p {
  margin-top: 12px;
  line-height: 1.7;
}

.contact-details a {
  color: #102a43;
  font-weight: 700;
}

@media (max-width: 800px) {
  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 20px;
  }
}.contact-page-simple {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 700px;
}

.contact-details {
  grid-template-columns: 1fr;
  text-align: center;
}.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8eef7;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}.gallery-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.gallery-link:hover {
  transform: translateY(-4px);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-album {
  max-width: 1200px;
  margin: auto;
  padding: 70px 30px;
}

.photo-album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.photo-album-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 800px) {
  .photo-album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}.photo-album-grid img {
  cursor: pointer;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}

.photo-lightbox.active {
  display: flex;
}

.photo-lightbox img {
  width: min(80vw, 750px);
  height: min(80vw, 750px);
  max-height: 85vh;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  border: none;
  background: white;
  color: #102a43;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
}.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}

.photo-lightbox.active {
  display: flex;
}

.photo-lightbox img {
  width: min(80vw, 700px);
  height: min(80vw, 700px);
  object-fit: contain;
  background: white;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: white;
  font-size: 30px;
  cursor: pointer;
}/* Position de la couverture Tournois */
.gallery-photo img[alt="Tournois"] {
  object-position: center 35%;
}.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-content {
  width: 50%;
}

.hero-image {
  width: 45%;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 48%;
  flex-shrink: 0;
}

.hero-content h1 {
  white-space: nowrap;
}

.hero-image {
  width: 55%;
  position: relative;
  z-index: 2;
  margin-right: -280px;
}

@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image img {
    height: 300px;
  }
}/* =========================
   VERSION SMARTPHONE
========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    min-height: 85px;
    padding: 8px 18px;
    gap: 10px;
  }

  .logo img {
    height: 70px;
  }

  header nav {
    display: none;
  }

  header > .button {
    padding: 10px 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
    padding: 55px 22px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-image {
    width: 100%;
    margin-right: 0;
    transform: none;
  }

  .hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 16px;
  }

  .presentation {
    grid-template-columns: 1fr;
    padding: 60px 22px;
    gap: 40px;
  }

  .presentation h2 {
    font-size: 32px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats div {
    padding: 20px 16px;
    min-height: 110px;
  }

  .stats strong {
    font-size: 24px;
  }

  .instagram {
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 22px;
    gap: 22px;
  }

  .instagram h2 {
    font-size: 28px;
  }

  .partners {
    padding: 60px 22px;
  }

  .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .partner-placeholder {
    min-height: 100px;
    font-size: 13px;
  }

  .page-hero {
    padding: 65px 20px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-intro {
    font-size: 16px;
  }

  .teams-page,
  .gallery-page,
  .partners-page,
  .join-page,
  .photo-album {
    padding: 55px 18px;
  }

  .teams-page-grid,
  .gallery-grid,
  .registration-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .full-team-card,
  .gallery-card,
  .registration-card,
  .partner-card {
    width: 100%;
  }

  .team-photo,
  .team-photo-placeholder {
    aspect-ratio: 1 / 1;
  }

  .gallery-photo {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .photo-album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-album-grid img {
    border-radius: 10px;
  }

  .photo-lightbox {
    padding: 15px;
  }

  .photo-lightbox img {
    width: 92vw;
    height: 92vw;
    max-height: 80vh;
    object-fit: contain;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .membership-header,
  .membership-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 14px;
  }

  .membership-header {
    font-size: 13px;
  }

  .membership-row {
    font-size: 13px;
  }

  .membership-row strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .membership-button {
    width: 100%;
    padding: 16px 20px;
  }

  footer {
    padding: 45px 22px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    height: 75px;
  }

}


@media (max-width: 430px) {

  .hero h1 {
    font-size: 34px;
  }

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

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

  .photo-album-grid {
    grid-template-columns: 1fr;
  }

}@media (max-width: 768px) {

  .hero {
    width: 100%;
    padding: 50px 25px;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.15;
    white-space: normal !important;
    overflow-wrap: normal;
  }

  .hero-title-line {
    white-space: normal !important;
  }

  .hero-image {
    width: 100%;
    margin-right: 0 !important;
    transform: none !important;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}/* =========================================
   CORRECTION MOBILE - NAVIGATION DU SITE
========================================= */

@media (max-width: 768px) {

  header {
    width: 100%;
    min-height: auto;
    padding: 10px 16px 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .logo img {
    height: 72px;
    width: auto;
  }

  header > .button {
    padding: 11px 15px;
    font-size: 13px;
    white-space: nowrap;
  }

  header nav {
    display: flex !important;
    width: 100%;
    order: 3;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  header nav::-webkit-scrollbar {
    display: none;
  }

  header nav a {
    flex: 0 0 auto;
    background: #f3f7fc;
    color: #102a43;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }

  header nav a:active {
    background: #0755c9;
    color: white;
  }

  /* ACCUEIL */
  .hero {
    width: 100%;
    min-height: auto;
    padding: 45px 22px;
    flex-direction: column;
    gap: 35px;
    overflow: hidden;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100%;
  }

  .hero h1 {
    width: 100%;
    font-size: 36px !important;
    line-height: 1.12;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .hero-title-line {
    white-space: normal !important;
  }

  .hero-image {
    width: 100% !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .hero-image img {
  width: 85%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}
}