body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #222;
}


.carousel-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1300 / 450;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
}

.video-wrapper {
  max-width: 1280px;
  margin: 30px auto;
}

.video-ratio {
  position: relative;
  padding-top: 56.11%; /* 404 / 720 = 56.11% */
}

.video-ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}




.header-zenu {
  background: linear-gradient(to right, #7b2ff7, #f107a3, #fcd1f7);
  padding: 20px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.main-menu a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
}

.main-menu a:hover {
  text-decoration: underline;
}

.footer-zenu {
  background: linear-gradient(to right, #7b2ff7, #f107a3, #fcd1f7);
  color: #ffffff;
  padding: 20px;
  margin-top: 10px !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  background-color: #2b2b2b;
  color: white;
  border: 1px solid #dd88aa;
  border-radius: 12px;
}

h2 {
  text-align: center;
  color: #ffccdd;
  font-size: 24px;
  margin-bottom: 20px;
}

form {
  text-align: center;
  margin-bottom: 20px;
}

.btn-saison {
  display: inline-block;
  background-color: #884466;
  color: white;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  border: none;
}

.btn-saison:hover {
  background-color: #aa5577;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fdf5ff;
  border: 1px solid #ddaadd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e6ccee;
}

th {
  background-color: #f7d8f5;
  color: #7b2ff7;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9ecff;
}

tr:hover {
  background-color: #f3d4ff;
}

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

.container-choix {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bloc-option {
  flex: 0 1 calc(50% - 10px);
  background-color: #f7e7ff;
  border: 1px solid #cc88dd;
  border-radius: 10px;
  padding: 20px;
  min-width: 300px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bloc-option h3 {
  margin-top: 0;
  color: #7b2ff7;
}

.bloc-option button {
  margin-top: 15px;
  background-color: #a336c5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.bloc-option button:hover {
  background-color: #8b2aad;
}

.details-commande {
  display: none;
  background-color: #fff0ff;
  border: 1px solid #ddaadd;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto 20px;
  max-width: 1140px;
  color: #222;
  background: #fff9ff;
}

.details-commande h4 {
  margin-top: 0;
  color: #7b2ff7;
}

.details-commande button {
  margin-top: 10px;
  background-color: #999;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.details-commande button:hover {
  background-color: #666;
}


.form-zenu input[type="text"],
.form-zenu input[type="email"],
.form-zenu input[type="password"],
.form-zenu textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: lightpink;
  border: 1px solid #bbb;
  border-radius: 6px;
  margin-bottom: 20px;
  box-sizing: border-box;
}




.form-zenu button {
  background-color: #D946EF;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-zenu button:hover {
  background-color: #be38d3;
}

.videos-wrapper {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #2b2b2b;
  border: 1px solid #dd88aa;
  border-radius: 12px;
  color: white;
}

.videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: 360px;
  background-color: transparent;
  padding: 10px;
  box-sizing: border-box;
}

/* .video-card h3 {
  font-size: 16px;
  color: #ffccdd;
  text-align: center;
  margin-bottom: 10px;
} */

.video-card h3 {
  font-size: 16px;
  color: #ffccdd;
  text-align: center;
  margin-bottom: 10px;
  min-height: 2.6em; /* ✅ force une hauteur équivalente à deux lignes */
  line-height: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .video-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (max-width: 640px) {
  .video-card {
    flex: 0 0 100%;
  }
}


.video-large {
  max-width: 1280px;
  margin: auto;
}

.video-large h3 {
  text-align: center;
  font-size: 18px;
  color: #ffccdd;
}


.form-zenu label {
  display: block !important;
  text-align: left !important;
  color: #7b2ff7 !important;
  font-weight: bold !important;
  margin-bottom: 6px;
  margin-top: 12px;
}


.comment-item {
  border: 1px solid #000;
  border-radius: 5px;
  background: #ffffe0;  /* light yellow */
  padding: 1em;
  margin-bottom: 1em;
}
.comment-meta {
  font-size: 0.9em;
  color: #333;
  margin-bottom: 0.5em;
}
.comment-msg {
  margin-bottom: 0.5em;
}
.coach-reply {
  border-left: 3px solid #000;
  padding-left: 0.5em;
  margin-top: 0.5em;
  font-style: italic;
  background: #f9f9f9;
}

/* indentation “tab” pour la réponse coach */
#comments-section .coach-reply {
  border-left: 4px solid #000;
  padding-left: 1.5em;    /* indentation plus marquée */
  margin-top: 0.75em;
  background-color: #f9f9f9;
  font-style: italic;
  color: #000;
}

/* Style pour la ligne méta du commentaire */
#comments-section .comment-meta {
  font-size: 1.1em;      /* un peu plus grand que le texte normal */
  color: blue;           /* texte en bleu */
  margin-bottom: 0.75em; /* espacement sous la ligne */
}
