/*=============================
=         GOOGLE FONTS        =
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display&display=swap');

/*=============================
=         RESET + BASE        =
=============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #121212;
  color: #eee;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/*=============================
=          NAVBAR             =
=============================*/
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6600;
  text-shadow:
    1px 1px 1px #000,
    2px 2px 2px #e05500,
    3px 3px 4px #00000099;
  letter-spacing: 1.5px;
  transition: transform 0.3s ease;
  animation: glowUp 1.5s ease forwards;
}
.logo:hover {
  transform: scale(1.05) rotate(-1deg);
  text-shadow:
    1px 1px 1px #000,
    2px 2px 2px #ff6600,
    4px 4px 6px #ff660099;

}

.logo img {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 0 6px #ff6600);
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: #eee;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 25px;
  transition: 0.35s ease;
  font-size: 1rem;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: #ff6600;
  color: #121212;
}


@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed; /* fixe par-dessus le contenu */
    top: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px; /* espace pour le logo en haut */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 30px;
    z-index: 1000;
  }

  .nav-links li a {
    color: #fff; /* texte blanc pour bien voir */
    font-size: 20px;
    text-decoration: none;
  }

  .nav-links.show {
    transform: translateX(0); /* menu visible */
  }

  .hamburger {
    display: flex;
  }
}


/*=============================
=        HERO SECTIONS        =
=============================*/
.hero {
  height: 100vh;
  background: url('../images/camion-jst.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  margin-top: 75px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1.8s ease forwards;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: #fff;
  text-shadow: 2px 2px 10px #ff6600;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.4rem;
  text-shadow: 1px 1px 5px #000;
  margin-bottom: 30px;
}
.btn {
  background: #ff6600;
  color: #121212;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px #ff6600aa;
}
.btn:hover {
  background: #e05500;
  box-shadow: 0 0 30px #e05500cc;
}

/* Version pour les pages internes */
.hero-small {
  height: 50vh;
  background: url('../images/camion-jst.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  position: relative;
  padding: 0 8%;
  text-align: center;
}
.hero-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.hero-small .hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1.5s ease forwards;
}
.hero-small h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-shadow: 2px 2px 10px #ff6600;
}
.hero-small p {
  font-size: 1.1rem;
  max-width: 550px;
  margin: 10px auto 0;
}

/*=============================
=        SECTIONS TEXTES      =
=============================*/
.presentation {
  background: #1f1f1f;
  padding: 80px 12% 100px;
  text-align: center;
}
.presentation h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #ff6600;
  margin-bottom: 25px;
}
.presentation p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ccc;
}

.content-block {
  padding: 80px 10%;
  background-color: #1c1c1c;
  color: #f0f0f0;
  animation: fadeUp 1.2s ease forwards;
  text-align: center;
}
.content-block h2,
.content-block h3 {
  font-size: 2rem;
  color: #ffa64d;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.content-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;

  background: rgba(255, 255, 255, 0.08); /* Couleur claire transparente */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* pour compatibilité Safari */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* âÂÂÂÂÂÂ Ajoute cet effet au survol */
.content-block p:hover {
  transform: scale(1.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.3);
}

/*=============================
=      SECTIONS ENCADRÉES     =
=============================*/
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 80px 12%;
}
.card {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff660088;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease forwards;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px #ff6600aa;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  color: #ff6600;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card p {
  font-size: 1rem;
  color: #ddd;
}

/*=============================
=        SECTION SERVICE      =
=============================*/
.section-image-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  background-color: #1c1c1c;
  color: #f0f0f0;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease;
}
.section-image-text:nth-child(even) {
  flex-direction: row-reverse;
}
.section-image-text img {
  width: 45%;
  min-width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 166, 77, 0.2);
  transition: transform 0.3s ease;
}
.section-image-text img:hover {
  transform: scale(1.02);
}
.section-text {
  flex: 1;
  min-width: 280px;
}
.section-text h3 {
  color: #ffa64d;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
}
.section-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

/*=============================
=          ZONES             =
=============================*/
.zones-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.zones-list li {
  font-size: 1.05rem;
  margin: 10px 0;
  background-color: #2a2a2a;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.15);
  animation: fadeInUp 1s ease-in-out;
}

/*=============================
=          MAP IMAGE          =
=============================*/
.map-image {
  margin: auto;
  padding-top: 0px; /* très proche du haut */
  padding-bottom: 10px;
  max-width: 400px;
}

.map-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff660044;
  transition: transform 0.3s ease;
}
.map-image img:hover {
  transform: scale(1.02);
}

/*=============================
=           FOOTER            =
=============================*/
footer {
  background: #101010;
  padding: 50px 5%;
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  box-shadow: inset 0 10px 20px #ff6600cc;
}
footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #ff6600;
  margin-bottom: 25px;
}
.partners-slider {
  overflow: hidden;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}
.partners {
  display: flex;
  gap: 50px;
  animation: slideLeft 30s linear infinite;
}
.partners img {
  height: 60px;
  filter: grayscale(1) brightness(0.7);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.partners img:hover {
  filter: brightness(1);
  transform: scale(1.2);
}

/*=============================
=         ANIMATIONS          =
=============================*/
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*=============================
=           RESPONSIVE        =
=============================*/
@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
  .section-image-text {
    flex-direction: column !important;
    padding: 60px 6%;
  }
  .section-image-text img,
  .section-text {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-small h1 {
    font-size: 2rem;
  }
  .content-block {
    padding: 60px 6%;
  }
  .zones-list li {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .logo {
    font-size: 1.5rem;
  }
  .logo img {
    height: 45px;
  }
  .nav-links {
    gap: 18px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-small {
    height: 35vh;
  }
  .hero-small h1 {
    font-size: 1.5rem;
  }
}

@keyframes glowUp {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* FORMULAIRE CONTACT - STYLE MODERNE */

.content-blocka {
  max-width: 600px;
  margin: 50px auto;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-blocka h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffa64d;
}

.content-blocka p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ddd;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #ffa64d;
  margin-bottom: 5px;
  display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ffa64d;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff9000;
  background: rgba(255, 255, 255, 0.25);
}

.form-consent {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

.form-consent label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #ffa64d;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff9000;
  margin: 0;
}

.form-info {
  max-width: 500px; 
  font-size: 0.7rem !important;  
  color: #bbb;
  margin-top: 8px;
  margin-left: 28px;
}


.form-consent .form-info a {
  color: #ffa64d;
  text-decoration: underline;
}

.btn {
  background-color: #ff9000;
  border: none;
  padding: 14px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1c1c1c;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
  width: 150px;
  text-align: center;
}

.btn:hover {
  background-color: #ffa64d;
  color: #000;
}

#form-message {
  color: #ffa64d;
  font-weight: 600;
  text-align: center;
}

/* INFORMATIONS */

.content-blocke {
  padding: 80px 10%;
  background-color: transparent;
  color: #f0f0f0;
  animation: fadeUp 1.2s ease forwards;
  text-align: center;       /* centre le texte horizontalement */
  position: relative;
  display: flex;
  justify-content: center;  /* centre le contenu horizontalement */
}

.content-blocke::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid #ffffff;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  z-index: 0;
}

.info-blur-box {
  position: relative;
  z-index: 1;
  max-width: 600px;  /* limite la largeur du texte pour un bon centrage */
}

.content-blocke h3 {
  color: #ff6600;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.5rem;
}

.info-blur-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.3);
}

.contact-info p {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 12px;
  text-align: left;
}

/* Placeholder */
form.contact-form input::placeholder,
form.contact-form textarea::placeholder {
  color: #bbb;
  font-style: italic;
}

footer p a {
  color: #ff6600;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Styles spécifiques pour la page privacy.html */

.privacy-container {
  max-width: 900px;
  margin: 30px auto 60px auto;
  padding: 0 20px;
  color: #222;
  background: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.logo-container img {
  max-width: 180px;
  height: auto;
}

.privacy-container h2 {
  color: #ff6600;
  margin-bottom: 15px;
  font-weight: 700;
}

.privacy-container h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #cc5200;
}

.privacy-container p {
  line-height: 1.6;
  font-size: 1.05rem;
}

.privacy-container a {
  color: #ff6600;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}


footer {
  background-color: #222;
  padding: 30px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

footer .container.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

footer h2 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #ff6600;
}


/* ----------- SECTION PARTENAIRES ----------- */

.partners-section {
  background-color:#1c1c1c;
;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.partners-section h2 {
  font-size: 2em;
  color: #ff6600;
  margin-bottom: 40px;
}

.partners-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: normal;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

.partners-subtitle:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}




.partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap; /* important */
  width: max-content; /* pour que l'animation continue */
  animation: slidePartner 25s linear infinite;
}

.partners img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.partners img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 900px; /* Limite la largeur de l'encadré */
  margin: 0 auto; /* Centre horizontalement */
  border: 2px solid #ddd; /* Bordure grise */
  border-radius: 10px; /* Coins arrondis */
  padding: 20px;
  background-color: #fefefe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


@keyframes slidePartner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Animation pour slider logos */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----------- SLIDER LOGOS MOBILE VITESSE ----------- */
@media (max-width: 767px) {
  .partners {
    animation: slidePartner 10s linear infinite; /* plus rapide que desktop */
  }

  .partners img {
    height: 50px; /* adapte la taille sur mobile */
  }
}



.map-section {
  text-align: center;
  margin: 80px auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
}

.france-map-container {
  position: relative;
  display: inline-block;
}

.france-map {
  width: 90%;
  max-width: 600px;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.3s ease-in-out;
  border-radius: 8px;
}

.france-map:hover {
  filter: grayscale(0) brightness(1);
}

.highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-shadow: 0 0 30px 15px rgba(0, 153, 255, 0.3);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 15px 5px rgba(0, 153, 255, 0.3); }
  50%  { box-shadow: 0 0 30px 20px rgba(0, 153, 255, 0.5); }
  100% { box-shadow: 0 0 15px 5px rgba(0, 153, 255, 0.3); }
}

.valeurs {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.valeurs-title {
  color: #ff6600;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.valeurs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.valeur-item {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.valeur-item img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.valeur-item h3 {
  font-size: 16px;
  color: #002147;
  margin-bottom: 10px;
}

.valeur-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}


/* ---------- BOUTON DE CONTACT FLOTTANT ---------- */

.jst-popup-container {
  position: fixed;
  bottom: 25px;
  right: -10px;
  z-index: 10000;
  display: flex;
  align-items: center;
  transition: right 0.3s ease;
}

.jst-popup-container:hover {
  right: 0;
}

.jst-popup-message {
  background: white;
  padding: 12px 16px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 6px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.3s ease;
  min-width: 180px;
  font-size: 14px;
  color: #333;
  margin-right: 0;
  order: 1;
}

.jst-popup-message .jst-btn-contact {
  background: #ff6600;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

.jst-popup-container:hover .jst-popup-message {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.jst-popup-btn {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50% 0 0 50%;
  box-shadow: -3px 4px 12px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  order: 2;

  animation: bigPulseBounceGlow 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes bigPulseBounceGlow {
  0%, 100% {
    transform: scale(1) translateY(0);
    box-shadow: -3px 4px 12px rgba(0,0,0,0.2),
                0 0 10px 2px rgba(0,123,255,0.4);
  }
  25% {
    transform: scale(1.1) translateY(-6px);
    box-shadow: -3px 6px 15px rgba(0,0,0,0.3),
                0 0 20px 4px rgb(255, 99, 1);
  }
  50% {
    transform: scale(1.15) translateY(0);
    box-shadow: -3px 4px 12px rgba(0,0,0,0.25),
                0 0 30px 8px rgb(255, 99, 1);
  }
  75% {
    transform: scale(1.1) translateY(-6px);
    box-shadow: -3px 6px 15px rgba(0,0,0,0.3),
                0 0 20px 4px rgb(255, 99, 1);
  }
}

.jst-popup-container:hover .jst-popup-btn {
  animation: none;
  transform: none;
  box-shadow: -3px 4px 12px rgba(0,0,0,0.2);
}

/* Flèche SVG */
.jst-popup-arrow {
  stroke: #ff6600;
  width: 30px;
  height: 30px;
}



/* ---------- SECTION NOS ATOUTS ---------- */

.jst-advantages-section {
  background: white;
  padding: 60px 20px;
  width: 100%;
  animation: fadeIn 1s ease-out;
  font-family: 'Playfair Display', serif;
}

.jst-advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jst-advantages-container h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.jst-advantages-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.jst-advantage-item {
  flex: 1 1 200px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 360px;
}

.jst-advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.jst-advantage-item img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.jst-advantage-text {
  flex-grow: 1;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* texte en bas */
  text-align: center;
  width: 100%;
}

.jst-advantage-text h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.jst-advantage-text p {
  font-size: 14px;
  font-weight: normal;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* --------- FOOTER --------- */

footer {
  background-color: #000;
  color: #ff6600;
  font-family: 'Playfair Display', serif;
  padding: 40px 20px 20px;
  width: 100%;            /* Prend toute la largeur */
  box-sizing: border-box; /* Pour que padding soit inclus */
}

/* Ajoute un conteneur pour limiter la largeur du contenu */
.jst-footer-top,
.jst-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}


/* Bandeau haut : À propos + icônes */
.jst-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  max-width: 1200px;
  margin: 0 auto;
}

/* Conteneur texte À propos */
.jst-footer-text {
  max-width: 50%;  /* moitié de la largeur max */
  text-align: left;
}

.jst-footer-about {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600;
  margin: 10px 0 8px 0;
}

.jst-footer-top p {
  font-size: 16px;
  color: #ffffff;
  font-weight: normal;
  margin: 0;
  line-height: 1.4;
}

/* Bloc réseaux sociaux */
.jst-footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  min-width: 150px; /* pour garder un minimum d'espace */
}

/* Icônes */
.jst-footer-socials a {
  display: inline-block;
}

.jst-footer-socials img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
  cursor: pointer;
}


.jst-footer-socials img:hover {
  transform: scale(1.2);
}

/* Bandeau bas : liens + copyright */
.jst-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ff6600;
  font-weight: bold;
  gap: 8px;
}

.jst-footer-bottom .jst-footer-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.jst-footer-link {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.jst-footer-link:hover {
  text-decoration: underline;
}

.jst-footer-bottom p {
  margin: 0;
  text-align: center;
  font-weight: normal;
}



/* ---------- ANIMATION D'APPARITION ---------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.header-logo-title img {
  max-width: 100px; /* ajuste la taille du logo */
  height: auto;
}

.header-logo-title h1 {
  color: #ff6600;
  font-weight: 700;
  margin: 0;
  font-size: 2.2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hamburger {
  display: none; /* affiché seulement sur mobile */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100; /* au-dessus du menu */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

