/* Variables pour les couleurs */
:root {
  --primary-color: #6a6f39; /* Vert comme votre image */
  --secondary-color: #ffc107; /* Jaune/orange pour les accents */
  --dark-text: #333;
  --light-text: #f4f4f4;
  --background-light: #ffffff;
  --background-dark: #f0f0f0;
}

body {
  font-family: "Poppins", sans-serif; /* Utilise Poppins si importé, sinon une police générique */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--background-light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 40px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

header .affiche {
  max-width: 350px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

header .header-content {
  text-align: left;
  flex: 1;
}

header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

header .tagline {
  font-size: 1.2em;
  opacity: 0.9;
}

.hero {
  background-color: var(--background-dark);
  padding: 50px 0;
  position: relative;
  overflow: hidden; /* Pour contenir l'image */
}

.hero-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.price-bubble {
  background-color: var(--secondary-color);
  color: var(--dark-text);
  padding: 15px 25px;
  border-radius: 50%; /* Cercle */
  display: inline-block;
  font-weight: bold;
  font-size: 1.5em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: -80px; /* Remonte un peu sur l'image */
  position: relative;
  z-index: 1;
}

.price-bubble p {
  margin: 0;
  font-size: 0.6em;
  text-transform: uppercase;
}

.price-bubble span {
  font-size: 2.5em;
  display: block;
  line-height: 1;
}

.limited-places {
  font-weight: 600;
  color: #e74c3c; /* Rouge pour l'urgence */
  font-size: 1.1em;
  margin-top: 20px;
}

.features {
  padding: 60px 0;
  text-align: center;
  background-color: var(--background-light);
}

.features h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.module-item {
  background-color: var(--background-dark);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.module-item:hover {
  transform: translateY(-5px);
}

.module-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.module-item.bonus {
  background-color: #d4edda; /* Vert clair pour le bonus */
  border: 2px solid var(--primary-color);
}

.module-item.bonus h3 {
  color: #28a745; /* Vert plus foncé */
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-btn {
  background-color: var(--secondary-color);
  color: var(--dark-text);
  border: none;
  font-size: 1.1em;
}

.primary-btn:hover {
  background-color: #ffda6a;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background-color: #25d366; /* Vert WhatsApp */
  color: white;
  border: none;
  font-size: 1.1em;
}

.whatsapp-btn:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
}

footer p {
  margin: 5px 0;
}

/* Media Queries pour la responsivité */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  header .header-content {
    text-align: center;
  }
  
  header .affiche {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .hero-flex {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  header h1 {
    font-size: 2em;
  }
  
  .features h2,
  .cta-section h2 {
    font-size: 1.8em;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
  
  .price-bubble {
    margin-top: -60px; /* Ajustement pour mobile */
  }
  
  .btn {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
