```css
/* === FONTS LOCALES === */

/* Space Ranger (titres) */
@font-face {
  font-family: 'Space Ranger';
  src: url('embed_data/Space_Ranger/spaceranger.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Ranger';
  src: url('embed_data/Space_Ranger/spacerangerbold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Garet (texte par défaut) */
@font-face {
  font-family: 'Garet';
  src: url('embed_data/garet/Garet-Book.woff2') format('woff2'),
       url('embed_data/garet/Garet-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Garet';
  src: url('embed_data/garet/Garet-Heavy.woff2') format('woff2'),
       url('embed_data/garet/Garet-Heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4,
.navbar-nav .nav-link {
  font-family: 'Space Ranger', sans-serif;
  text-transform: none;
  font-variant: normal;
  font-feature-settings: "smcp" 0, "c2sc" 0;
  letter-spacing: 1.5px;
}


body {
  font-family: 'Garet', sans-serif;
  padding-top: 70px;
}

h2{
  color: #2A3281;
}

.section {
  padding: 90px 0;
}
.hero {
  height: 80vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('pitstoppic3.jpeg') top center/contain no-repeat; /* <- ici */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.hero-content {
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Space Ranger', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-content .btn-main {
  margin-top: 10px;
} 

.btn-main {
  background: #F6B004;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
}

.dark {
  background: #111;
  color: #fff;
}

.footer {
  background: #000;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}
.footer a {
  color: #ffffff;
  font-weight: 600;
}
.footer p{
  color: rgba(255,255,255,0.75);
}

.dark {
  background: #111;
  color: #fff;
}

.dark .service-box {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}

.dark a {
  text-decoration: none;
}

.dark a:hover {
  color: #F6B004;
}

.btn-lang {
  background: #F6B004;
  border: none;
}
.services-section {
  background: #f6f7fb;
}

.section-title {
  color: #2A3281;
  font-weight: 700;
}

.section-subtitle {
  max-width: 650px;
  margin: auto;
  color: #666;
  font-size: 16px;
}

.service-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  height: 100%;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 34px;
  color: #F6B004;
  margin-bottom: 20px;
  display: inline-block;
}

.service-box h5 {
  color: #2A3281;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.formations-wrapper {
  background: #f6f6f8;
}

.formations-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.8;
}

.formations-intro p {
  margin-bottom: 20px;
}

.intro-strong {
  font-weight: 600;
  color: #2A3281;
}

.formations-subtitle {
  margin-top: 40px;
  font-weight: 600;
  color: #2A3281;
}

.formations-title {
  font-family: 'Space Ranger', sans-serif;
  letter-spacing: 2px;
  color: #2A3281;
}

.formation-box {
  background: #ffffff;
  border: 1px solid #d6d6e0;
  padding: 40px 30px;
  height: 100%;
}

.formation-letter {
  width: 70px;
  height: 70px;
  border: 2px solid #2A3281;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Ranger', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #2A3281;
}

.formation-letter.red {
  color: #d32f2f;
  border-color: #d32f2f;
}

.formation-icon-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #2A3281;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.formation-box h4{
  font-family: 'Garet', sans-serif;
  font-weight: 800;      /* utilise Garet-Heavy (800) */
  color: #2A3281;        /* bleu demandé */
  letter-spacing: 0;     /* optionnel : évite l'effet "spaceranger" */
  text-transform: none;  /* sécurité */
}


.formation-highlight {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.formation-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.it-training-title {
  font-family: 'Space Ranger', sans-serif;
  color: #2A3281;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.it-training-title {
  font-size: 32px;
}

.why-pitstop {
  background: #ffffff;
}

.why-title {
  font-family: 'Space Ranger', sans-serif;
  color: #2A3281;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.why-pitstop p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.why-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.why-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

#contact-info h2,
#contact-info h5 {
  color: #2A3281;
}

#contact-info h2{
  font-weight: 700;
  letter-spacing: 1.5px;
}
```
.why-title {
  text-transform: none;
}

.why-bullets {
  margin: 10px 0 20px;
  padding-left: 1.2rem;
}

.why-bullets li {
  margin-bottom: 10px;
}

.why-dashes {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}

.why-dashes li {
  margin-bottom: 10px;
}

.why-dashes li::before {
  content: "- ";
}

.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link:visited {
  color: #2A3281 !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link.active {
  color: #2A3281 !important;
}

/* =========
   FOND section "Pourquoi pit-stop-informatique ?"
   ========= */
#about{
  background-color: #EDEDED; /* même gris que le fond de l'image F1 */
}


/* =========
   FOND section "Informations de contact"
   Objectif : image + voile sombre, et TOUT le texte en blanc (plus de bleu)
   ========= */
#contact-info{
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
    url('pitstoppic5.jpeg') center/cover no-repeat;
}

#contact-info .container{
  position: relative;
  z-index: 1;
}

/* Tout le texte/links/titres en blanc dans la section */
#contact-info,
#contact-info .section-title,
#contact-info h2,
#contact-info h5,
#contact-info p,
#contact-info a{
  color: #ffffff !important;
}

/* (Optionnel) au survol des liens : reste blanc */
#contact-info a:hover{
  color: #ffffff !important;
}

/* Séparateurs entre items de la navbar */
.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;          /* ajuste si tu veux plus grand */
  background: #2A3281;   /* bleu demandé */
  opacity: 0.35;         /* plus discret */
}

.navbar-nav .nav-link {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
