/* ============================
   Styles globaux du site
   ============================ */
body {
  background-color: #2c2c2c;
  color: #e0e0e0;
  font-family: Arial, Helvetica, sans-serif;
  padding: 40px 20px;
  font-size: 15px;
  text-align: center;
  font-weight: 300; /* léger sur tout le corps */
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 300; /* léger */
  color: #f0f0f0;
}

h2 {
  font-size: 18px;
  font-weight: 300; /* léger */
  color: #ccc;
  margin-bottom: 25px;
}

.intro {
  font-style: italic;
  font-size: 16px;
  font-weight: 300; /* léger */
  color: #d0d0d0;
  margin-bottom: 30px;
}

.social-icons img {
  margin: 0 5px;
  transition: opacity 0.3s;
  vertical-align: middle;
}
.social-icons img:hover {
  opacity: 0.7;
}

.coming-soon {
  margin-top: 60px;
  font-size: 14px;
  font-weight: 300;
}

/* ============================
   Conteneur principal
   ============================ */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* prend toute la hauteur de l'écran */
}

.content {
  flex: 1; /* prend tout l'espace entre header et footer */
  margin-top: 1rem;
}

/* ============================
   Footer
   ============================ */
.footer {
  font-size: 0.65rem;
  text-align: center;
  color: #666666;
  padding: 0.5rem 0;
}

/* ============================
   Texte et liens des crédits
   ============================ */
.credits, .credit-link {
  font-size: 0.7rem;    /* lisible mais petit */
  line-height: 1.25rem;
  color: #666666;
}

.credits p, .credit-link p {
  margin-bottom: 0.3rem;
}

.credits a, .credit-link a {
  color: #666666;
  text-decoration: none;
}

.credits a:hover, .credit-link a:hover {
  text-decoration: underline;
}
