/*
Theme Name: GeneratePress Child
Theme URI: http://tonsite.fr
Description: Thème enfant de GeneratePress.
Author: Anonyme
Author URI: http://tonsite.fr
Template: generatepress
Version: 1.0
*/

/* --- Corps du site --- */
body {
  background-color: #f9f9f9; /* fond clair */
  font-family: 'Segoe UI', sans-serif;
}

/* --- Hero / bloc supérieur --- */
.hero {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

/* --- Cartes génériques --- */
.card {
  border: none;
}

/* --- Footer --- */
footer {
  background-color: transparent; /* Retire le fond noir */
  color: #212529; /* Texte foncé */
}

/* --- Formulaires --- */
.form-section {
  background-color: #eef2f7;
  padding: 60px 0;
}

/* --- Section témoignages --- */
.container.testimonials .card {
  background: #f0f4ff; /* fond clair ou transparent */
  border: none;
  border-radius: 12px;
  color: #1e3a8a; /* texte bleu foncé */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.container.testimonials .blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #1e3a8a;
}

.container.testimonials .blockquote-footer {
  margin-top: 10px;
  font-weight: 500;
  color: #2563eb;
}

/* --- Boutons --- */
.btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1e52cc;
  border-color: #1e52cc;
}

/* --- Formulaire d’inscription --- */
.card .form-label {
  font-weight: 500;
}

.card input.form-control {
  padding: 8px 12px;
  font-size: 1rem;
}

/* --- Tableaux / listes --- */
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
}

.table-responsive th, .table-responsive td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

/* --- Divers / espacements --- */
.mt-5 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}