
:root {
  --main-blue: #0A3563;
  --light-bg: #ffffff;
}

/* ----------------------------------------------------
   BASE
---------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 1;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--light-bg);
  color: #000;
}
/* ----------------------------------------------------
   PORTRAIT
---------------------------------------------------- */
.portrait-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 10px 5px;
  max-width: 1200px;
  margin: 1 auto;
  background: #fff;
}

* -------------------------------------------------- */
/* ??? PHOTO */
/* -------------------------------------------------- */
.photo {
  flex: 1 1 380px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.photo img {
  width: 180px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);


animation: fadeZoom 1.2s ease forwards;
  opacity: 0;
}


/* Animation apparition photo */
@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

/
/* TEXTE */
.portrait-text {
  flex: 1;
  text-align: justify;
  font-family: "Segoe UI", Arial, sans-serif;
}

.portrait-text h1 {
  color: var(--main-blue);
  font-size: 1.7em;
  margin-bottom: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.links-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
}

/* Boutons */
.link-box {
  background-color: var(--main-blue);
  color: #fff;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.link-box:hover {
  transform: translateY(-3px);
  background: #0055aa;
}

* -------------------------------------------------- */
/* ?? CLIENTS */
/* -------------------------------------------------- */
.clients-text ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 240px;
  text-align: left;
}

.clients-text li { margin-bottom: 8px; }
.clients-text a { color: #000; text-decoration: none; }
.clients-text a:hover { color: var(--main-blue); font-weight: 600; }

* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
footer {
  text-align: center;
  background-color: var(--main-blue);
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9em;
  line-height: 1.4;
}

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

footer a:hover {
  text-decoration: underline;
}
/* Logo centré dans le footer */
.footer-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 12%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.visitor-counter {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 10px;
  border: 2px solid #0078d7;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-top: 14px;
  text-align: center;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

/* TABLETTES */
@media (max-width: 992px) {
  .portrait-photo img {
    width: 180px;
    height: 230px;
    border-radius: 50% / 60%;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .portrait-container {
    flex-direction: column;  /* IMPORTANT : photo AU-DESSUS */
    text-align: center;
    gap: 20px;
    padding: 20px 15px;
  }

  .portrait-photo img {
    width: 160px;
    height: 230px;
    border-radius: 45% / 60%;  /* OVALE PLUS MARQUÉ */
  }

  .portrait-text {
    text-align: center;
  }

  .links-section {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
     text-align: center;
  }
}

/* PETITS MOBILE */
@media (max-width: 480px) {

  .portrait-photo img {
    width: 160px;
    height: 220px;
    border-radius: 40% / 55%;
  }
/* -------------------------------------------------- */
/* ?? COMPTEUR VISITEURS */
/* -------------------------------------------------- */
.visitor-counter {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 10px;
  border: 2px solid #0078d7;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-top: 14px;
  text-align: center;
}
