/* ——— Styles généraux ——— */
body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2 {
  margin: 0 0 10px;
}









/* nav supp */

.navbar-brand span {
	font-weight: bold;
}
		
		
		
		
.navbar-toggler-icon {
background-color: #2e52ff; /* Change la couleur hamburger pour que soit visible */
}	








/* ——— SECTION 1 : HERO avec image PNG ——— */
header {
  position: relative;
  height: 180px; /* Réduit la hauteur du header */
  background: url('../images/bg4.jpg') left bottom no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  padding: 15px 30px; /* Réduit l'espace intérieur du header */
  overflow: hidden;
}

header img {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100px;
  max-width: 250px; /* Réduit la taille de l'image */
  width: 100%;
  height: auto;
  z-index: 1;
}

@media (max-width: 768px) {
  header img {
    max-width: 200px; /* Réduit la taille de l'image sur mobile */
  }
}

header h1 {
  font-size: 2em; /* Réduit la taille du titre */
  color: #333;
  z-index: 2;
  position: relative;
  margin-bottom: 10px; /* Ajuste l'espacement sous le titre */
  text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
}

header p {
  font-size: 1.2em; /* Réduit la taille du texte */
  z-index: 2;
  position: relative;
  color: #000;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
}










/* ——— Section 2 : CTA + FORMULAIRE ——— */
.cta-section {
  background: #ffe6e6;
  text-align: center;
  padding: 30px 20px;
}

.cta-section p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.social-proof {
  color: #007bff;
  font-weight: 600;
  font-size: 0.95em;
  margin-bottom: 6px;
}








/* ----- Formulaire personnalisé (scopé à .form-custom) pour landing page / n'affectent pas les formulaires Bootstrap standard / ----- */

.form-custom form {
  margin-bottom: 10px;
}

.form-custom input[type="email"] {
  width: 250px;
  max-width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-custom button {
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-custom button:hover {
  background: #0056b3;
}











small {
  font-size: 0.9em;
  color: #666;
}








/* ——— Section 3 : ARGUMENTAIRE ——— */
.features {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  margin-bottom: 30px;
}

.feature-list {
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
}

.feature-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.feature-item img {
  max-width: 120px;
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

/* ——— Section 4 : CTA final ——— */
.footer-cta {
  background: #ffe6e6;
  text-align: center;
  padding: 40px 20px;
}

/* ——— Footer ——— */
.site-footer {
  background-color: #00204a;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  padding-top: 300px;
  font-size: 0.95em;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

/* ——— Classe additionnelle trouvée dans le style HTML ——— */
.label-fixe-recap-cmd {
  display: inline-block;
  width: 160px;
}









.content-box {

    background-color: #fff;
    padding: 30px;
	padding-top:40px;
	padding-bottom:40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    max-width: 650px;
    margin: 60px auto 0 auto;
    box-sizing: border-box; /* Inclure les bordures et paddings dans la largeur */

}