@charset "UTF-8";
/* --- CSS Global --- */
:root {
  --primary-color: #ff3131;
  --secondary-color: #ff914d;
  --dark-color: #333;
  --light-color: #fff;
  --gray-color: #666;
  --bg-light: #fafafa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: whitesmoke;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-color);
}

/* --- Barre de Navigation --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: var(--light-color);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar .nav-links a {
  color: var(--dark-color);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 10px;
}

.navbar .nav-links a:hover {
  color: var(--primary-color);
}

/* --- Styles du code fourni, intégrés et améliorés --- */
/* Section Principale (Hero) */
.hero {
  padding: 70px 40px 50px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5em;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .slogan {
  font-size: 2.8em;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark-color);
  margin: 0;
}

.hero .slogan span {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1em;
  color: var(--gray-color);
  max-width: 700px;
  margin: 20px auto 30px;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 49, 49, 0.4);
}

.cta-button:hover {
  background-color: #e62b2b;
  transform: translateY(-3px);
}

/* Section des fonctionnalités */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
}

.feature-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.4em;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
  /* Pour que toutes les cartes aient la même hauteur */
}

/* Section Tarifs */
#tarifs {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 350px !important;
}

.pricing-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-card p {
  color: var(--gray-color);
  margin-bottom: 25px;
}

.pricing-card stripe-buy-button {
  margin-top: auto;
  /* Pousse le bouton vers le bas */
}

/* Section Témoignages */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
}

.testimonial-card p.quote {
  font-style: italic;
  color: var(--gray-color);
  margin-bottom: 15px;
}

.testimonial-card p.author {
  font-weight: 600;
  color: var(--dark-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 30px 0;
}

.logo .by-zenasso {
  font-size: 0.4em; /* Plus petit */
  font-weight: 400; /* Moins gras */
  color: var(--gray-color); /* Couleur plus douce */
  vertical-align: middle;
  margin-left: 5px;
}

#contact {
  background-color: var(--bg-light); /* Fond gris clair pour la section */
  padding: 80px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--light-color); /* Fond blanc pour le formulaire */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-form h3 {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.contact-form p {
  color: var(--gray-color);
  margin-bottom: 30px;
}

/* --- Groupe de champs (label + input) --- */
.form-group {
  margin-bottom: 20px;
  text-align: left; /* Aligne le label à gauche */
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

/* --- Style des champs de saisie --- */
.form-group input[type=text],
.form-group input[type=email],
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color); /* La bordure devient rouge au focus */
  box-shadow: 0 0 8px rgba(255, 49, 49, 0.25); /* Ombre rouge légère */
}

/* --- Style du bouton d'envoi --- */
.submit-button {
  display: inline-block;
  width: 100%; /* Le bouton prend toute la largeur */
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #e62b2b; /* Couleur plus foncée au survol */
  transform: translateY(-3px);
}

.form-message {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none; /* Caché par défaut */
}

.form-message.success {
  background-color: #d4edda; /* Vert clair */
  color: #155724; /* Vert foncé */
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da; /* Rouge clair */
  color: #721c24; /* Rouge foncé */
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }
  .hero .slogan {
    font-size: 1.8em;
  }
  .navbar {
    flex-direction: column;
  }
  .navbar .nav-links {
    margin-top: 15px;
  }
  .navbar .nav-links a {
    margin: 0 10px;
    padding: 0;
  }
}/*# sourceMappingURL=main.css.map */