/* ——— 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;
  width: 100%;
  background: linear-gradient(135deg, #a1c4fd, #c2a0fd);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
  padding: 40px 10px 100px; /* important : espace pour l’image */
  overflow: hidden;
}

.hero-img-wrapper {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top:0;
  text-align: center;
  pointer-events: none; /* évite d’intercepter les clics si elle déborde un peu */
  border:solid 0px red;
height:160px;
}

.hero-img {
  max-width: 400px;
  width: 100%;
  height: auto;
}









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: 180px;
  height: 180px;
  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;
  height:350px;
    background: linear-gradient(135deg, #a1c4fd, #c2a0fd);
}








/* ——— 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;
}
