/* ================== */
/* BASE */
/* ================== */
body {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 40px;
  line-height: 1.7;
  background-color: black;
  color: #e5e5e5;
}

/* ================== */
/* TITRES */
/* ================== */
h1 {
  font-size: 34px;
  margin-bottom: 25px;
}

h2 {
  display: block;
  margin-top: 70px;
  margin-bottom: 15px;
  color: #b03a48;
  font-weight: 600;
}

h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b03a48;
  margin-top: 10px;
}

p {
  margin-bottom: 20px;
}

ul {
  margin: 15px 0 30px;
}

/* ================== */
/* TOP MENU */
/* ================== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.top-bar a {
  color: #b03a48;
  opacity: 0.9;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.top-bar a:hover {
  color: #d95c6a;
  opacity: 1;
}

.active {
  color: white;
  opacity: 1;
}

/* ================== */
/* LINKS */
/* ================== */
a:not(.top-bar a):not(.cta-button) {
  color: #e5e5e5;
  text-decoration: underline;
}

/* ================== */
/* HIGHLIGHT */
/* ================== */
.highlight {
  color: #b03a48;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  margin: 40px 0;
  font-size: 22px;
}

/* ================== */
/* IMAGE MOUNTAIN */
/* ================== */
.header-mountain {
  display: block;
  margin: 30px auto;
  width: 500px;
  max-width: 100%;
  opacity: 0.5;
}

/* ================== */
/* CTA BUTTON */
/* ================== */
.cta-button {
  display: inline-block;
  background-color: #14532d;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s;
}

.cta-button:hover {
  background-color: #0f3e22;
  transform: translateY(-2px);
}
.file-upload {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(229,229,229,0.5);
  color: #e5e5e5;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}

.file-upload:hover {
  background: rgba(229,229,229,0.10);
  border-color: rgba(229,229,229,0.8);
  transform: translateY(-1px);
}

.file-upload:active {
  transform: translateY(0px);
}

/* ================== */
/* LOGO (FIX IMPORTANT) */
/* ================== */

/* ⚠️ IMPORTANT : on SUPPRIME toute règle globale .logo */
/* (c’est ça qui foutait le bazar avant) */

.site-header,
.site-footer {
  text-align: center;
  margin: 20px 0;
}

/* LOGO SAFE (TAILLE FIXE + PRIORITÉ FORTE) */
.site-logo {
  width: 450px !important;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 10px auto 5px auto;
}

/* ================== */
/* FOOTER */
/* ================== */
footer {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #b03a48 !important;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #d95c6a !important;
}
footer p:last-child {
  opacity: 0.5;
  font-size: 13px;
}
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
}

.contact-form label {
  font-size: 13px;
  color: #b03a48;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: transparent;
  border: 1px solid rgba(229, 229, 229, 0.2);
  color: #e5e5e5;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #b03a48;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  align-self: flex-start;
}
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* HEADER LOGO */
.thanks-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 60px; /* 👉 descend le logo */
}

/* LOGO */
.thanks-logo {
  width: 500px;      /* 👉 plus visible */
  height: auto;
  display: block;
  opacity: 0.9;
}

/* CONTENU */
.thanks-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto; 
}
.thanks-container p {
   color: #b03a48;
  font-weight: 600;
}
.thanks-footer {
  margin-top: auto;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  padding: 20px 0;
}

/* ================== */
/* ABOUT SECTION */
/* ================== */
.apropos-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.apropos-container .photo2 {
  width: 120px;
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
}

.revision-example-title {
  color: #b03a48;
}

/* ================== */
/* MOBILE */
/* ================== */
@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    margin-top: 40px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-mountain {
    width: 300px;
    margin: 20px auto;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .apropos-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .apropos-container .photo2 {
    width: 100px;
    margin-bottom: 20px;
  }
