:root {
  --primary-color: #FF6F00; /* Orange vif */
  --secondary-color: #000000; /* Noir */
  --accent-color: #FFA000; /* Orange clair */
  --text-color: #333;
}

/* ---------------- Body ---------------- */
body {
  font-family: 'Comic Neue', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  margin: 0;
}

/* ---------------- Bannière ---------------- */
.banner {
  position: relative;
  /*overflow: hidden;*/
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.banner-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
}

.banner img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  z-index: 2;
}

.banner h1, .banner p, .banner .btn-primary {
  position: relative;
  z-index: 2;
  color: var(--secondary-color);
  text-shadow: 4px 4px 6px rgba(255, 255, 255, 0.7);
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

.banner p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}

.banner .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  transition: all 0.3s;
}

/* Flèches du slider */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  user-select: none;
  transition: background 0.3s;
}

.banner-arrow.left { left: 20px; }
.banner-arrow.right { right: 20px; }

.banner h1.visible, 
.banner p.visible {
  opacity: 1;
  transform: translateY(0);
}
/**********************banniere ************/
.banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Contenu du texte */
.banner-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 700px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active .banner-content {
  opacity: 1;
}

/* Styles de texte */
.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease forwards;
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.banner-content .btn {
  background-color: #FF6F00;
  border: none;
  padding: 10px 25px;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  animation: fadeInUp 1s ease 0.6s forwards;
}
.banner-content .btn:hover {
  background-color: #FFA000;
}
/* Animation de texte */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flèches du slider */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  user-select: none;
  transition: background 0.3s;
}
.banner-arrow:hover {
  background: rgba(0,0,0,0.6);
}
.banner-arrow.left { left: 20px; }
.banner-arrow.right { right: 20px; }
.txt-exp { vertical-align: super; }
.txt-price {font-weight: bold;font-size: 18px;}
/* ---------------- Sections ---------------- */
section {
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-color);
}

/* ---------------- Cards récits ---------------- */
.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* ---------------- Section Récits / Listes ---------------- */
.section-recits ul li {
  background: #fff;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-recits ul li i {
  color: #FF6F00;
  font-size: 1.2rem;
}



/* ---------------- Formulaire / Contact ---------------- */
.contact-section {
  background-color: #f9f9f9;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.contact-card .form-label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-card .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--primary-color);
  box-shadow: none;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px;
}

.contact-card .form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 5px rgba(255, 111, 0, 0.4);
  outline: none;
}

.btn-orange {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  font-size: 1.25rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
  min-width: 300px;
  font-weight: bold;
}

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  background-color: #e66000;
  color: #fff;
  outline: none;
}

/* ---------------- FAQ ---------------- */
.faq .accordion-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.faq .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
}

/* ---------------- Icons ---------------- */
.icon-circle {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ---------------- Animation scroll ---------------- */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ---------------- Responsive Global ---------------- */
@media (max-width: 1200px) {
  .banner h1 { font-size: 2.5rem; }
  .banner p { font-size: 1.2rem; }
  .btn-orange { font-size: 1.1rem; padding: 10px 20px; min-width: 250px; }
}

@media (max-width: 992px) {
  .banner { height: 400px; }
  .banner h1 { font-size: 2rem; }
  .banner p { font-size: 1rem; }
  .card { margin-bottom: 20px; }
  section { padding: 60px 15px; }
}

@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: center; gap: 15px; }
  .footer-col { flex: 1 1 100%; }

  .banner { height: 300px; padding: 0 10px; }
  .banner h1 { font-size: 1.8rem; }
  .banner p { font-size: 0.95rem; }
  .banner img.logo { width: 100px; top: 15px; left: 15px; }
  .banner-arrow { font-size: 1.5rem; padding: 8px; }

  .card { width: 100%; margin-bottom: 20px; }
  .section-recits ul li { flex-direction: column; align-items: flex-start; gap: 5px; }
  .contact-card { padding: 20px; }
  .btn-orange { min-width: 100%; font-size: 1rem; padding: 10px 15px; }
}

@media (max-width: 576px) {
  .banner h1 { font-size: 1.5rem; }
  .banner p { font-size: 0.9rem; }
  .contact-card .form-control { padding: 10px; font-size: 0.9rem; }
  .footer-col h3 { font-size: 1.2rem; }
  .btn-orange { font-size: 0.95rem; padding: 8px 12px; }
}
/************affichage recits*******************/
/* 🎨 Structure générale */
.section-langue {
  background: #FFF5E6;
  border-left: 6px solid #FF6F00;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
}

/* 🟠 Langue principale */
.section-langue h3 {
  font-weight: 700;
  color: #FF6F00;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 👶 Tranche d'âge */
.section-age {
  margin-left: 30px;
  margin-bottom: 25px;
}

.section-age h5 {
  color: #333;
  font-weight: 600;
  background-color: #FFF0D5;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
}

/* 📚 Thème */
.section-theme {
  margin-left: 50px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.section-theme h6 {
  color: #444;
  font-weight: 600;
  border-bottom: 2px solid #FF6F00;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 15px;
}

/* 🧾 Carte récit */
.card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* CTA bouton */
.btn-cta {
  background: linear-gradient(45deg, #FF6F00, #FFA040);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 20px;
  transition: 0.3s;
}

.btn-cta:hover {
  background: linear-gradient(45deg, #FFA040, #FF6F00);
  transform: scale(1.05);
}

.btn--primary {
  background-color: #dd6a29;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn--primary:hover {
  background-color: #c75c1f;
  transform: translateY(-2px);
  color: #fff;
}
.checkout-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.checkout-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.checkout-steps .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #dee2e6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #495057;
  transition: all 0.3s ease;
}

.checkout-steps .bar {
  flex: 1;
  height: 3px;
  background-color: #dee2e6;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.checkout-steps .step span {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #495057;
}

/* Étape active */
.checkout-steps .step.active .circle {
  background-color: #0d6efd;
  color: #fff;
}

.checkout-steps .step.active span {
  color: #0d6efd;
  font-weight: 600;
}

/* Étape terminée */
.checkout-steps .step.completed .circle {
  background-color: #28a745;
  color: #fff;
}

.checkout-steps .step.completed span {
  color: #28a745;
  font-weight: 600;
}

.checkout-steps .step.completed ~ .bar {
  background-color: #28a745;
}
.btn-outline-pink {
  border: 1px solid #e83e8c;
  color: #e83e8c;
}

.btn-outline-pink:hover,
.btn-check:checked + .btn-outline-pink {
  background-color: #e83e8c;
  color: #fff;
}

.btn-outline-primary:hover,
.btn-check:checked + .btn-outline-primary {
  background-color: #0d6efd;
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .checkout-steps {
    flex-wrap: wrap;
    gap: 5px;
  }
  .checkout-steps .circle {
    width: 30px;
    height: 30px;
  }
}
.personnalisation-item {
  background: #f8f9fa;
  transition: box-shadow 0.3s ease;
}

.personnalisation-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #ffffff;
}