/* Reset */



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

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
}

/* Vertical centering */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  
}

.hero {
  margin-bottom: 2rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.subtitle {
  font-size: 1rem;
  opacity: 0.75;
}

.lang-switch {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.lang-switch a {
  color: #aaa;
  text-decoration: none;
}

.lang-switch a[aria-current="page"] {
  color: #fff;
}

.contact {
  margin-top: 1rem;
  font-style: normal;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

/* Content */
#content {
  margin: 2rem auto;
  max-width: 680px;
}

/* Package list */
.package-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.package-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.package-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #aaa;
}

.package-list a {
  color: #fff;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

#content h2 {
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: left;
}


/* =========================
   MOBILE FIX
   ========================= */

   @media (max-width: 768px) {
  .page {
    justify-content: flex-start;
    text-align: left;
    padding-top: 3rem;
    padding-bottom: 3rem; /* ← typo corrigée */
  }

  /* 🔥 IMPORTANT: décentrer le contenu */
  #content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  
  }

  /* Titre Package bien à gauche */
  #content h2 {
    text-align: left;
    margin-left: 0;
  }

  /* Liste bien alignée au bord */
  .package-list {
    margin-left: 0;
    padding-left: 0;
  }

  .package-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 768px) {

  /* Plus d’air général en haut */
  .hero {
    margin-bottom: 3.5rem;
  }

  .lang-switch {
    margin-bottom: 2rem;
  }

  /* Console audionumérique */
  .hero h2 {
    margin-bottom: 0.75rem;
    opacity: 0.8;
  }

 
  /* Sous-titre Montréal (QC) */
  .subtitle {
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  /* Bloc contact */
  .contact {
    margin-top: 2rem;
    line-height: 1.5;
  }

}

