/* =========================
   GLOBAL
========================= */
body {
  font-family: "Poppins", sans-serif;
  background-color: #e6bae6;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =========================
   ACCUEIL
========================= */
#accueil {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* =========================
   BOX CENTRALE
========================= */
.central-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  max-width: 900px;
  width: 100%;
}

/* =========================
   PHOTO
========================= */
.photo-box {
  flex-shrink: 0;
  text-align: center;
}

.photo-box img {
  width: 280px;
  height: auto;
  border-radius: 12px;
}

/* =========================
   TITRES GAUCHE / DROITE
========================= */
.titles-left,
.titles-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.titles-left {
  align-items: flex-start;
}

.titles-right {
  align-items: flex-end;
}

/* =========================
   LIENS / TITRES
========================= */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3em;
  color: #f227f5;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.section-title:hover {
  color: #ff80ab;
  transform: scale(1.05);
}

/* =========================
   PAGES SECONDAIRES
========================= */
section:not(#accueil) {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1, h2 {
  color: #f227f5;
  border-bottom: 2px solid #f227f5;
  padding-bottom: 8px;
  font-size: 2em;
  font-family: "Cormorant Garamond", serif;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  text-align: center;
   font-size: 1.5em;
}

h4 {
   font-family: "Cormorant Garamond", serif;
   font-style: italic;
   text-align: left;
   font-size: 1.25em;
}

p, li {
  font-size: 1em;
  text-align: justify;
  hyphens: auto;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #cc4bb2;
  color: white;
  padding: 12px;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
  color: #ffb8cf;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 800px) {
  .central-box {
    flex-direction: column;
    gap: 25px;
  }

  .titles-left,
  .titles-right {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .photo-box img {
    width: 180px;
  }
}

a.cv-link,
a.cv-link:visited,
a.cv-link:hover,
a.cv-link:active {
  text-decoration: none !important;
}
