/* =====================================================
   🎓 BLOCS PÉDAGOGIQUES COLLAPSIBLES
   Utilisés pour : Takadimi, Conseils, Rythmes, etc.
   Couleurs cohérentes avec la charte "cours-de-guitare"
   ===================================================== */
/* =====================================================
   BLOCS PÉDAGOGIQUES COLLAPSIBLES — STYLE GLOBAL
   ===================================================== */

details[class^="bloc-"] {
  background: #faf8f3;
  border: 1px solid #e0d7c3;
  border-radius: 10px;
  margin: 20px 0;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Titre du bloc */
details summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 1.05em;
  color: #3c2f19;
  background: #f3efe7;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.25s ease;
}
details summary:hover {
  background: #f9f6ef;
}

/* =====================================================
   🧭 Animation fluide de la flèche des <summary>
   ===================================================== */

/* Flèche de base */
details summary::after {
  content: "▸";
  font-size: 1.1em;
  margin-left: 8px;
  color: inherit;
  transform-origin: center;
  transform: rotate(0deg);
  opacity: 0.85;
  transition:
    transform 0.5s cubic-bezier(0.42, 0, 0.25, 1),
    opacity 0.3s ease;
}

/* Rotation + légère mise en valeur à l'ouverture */
details[open] summary::after {
  transform: rotate(90deg);
  opacity: 1;
}

/* Couleurs de flèche harmonisées par type */
.bloc-takadimi summary::after {
  color: #b88c2a;
}
.bloc-conseil summary::after {
  color: #5ca46c;
}
.bloc-rythme summary::after {
  color: #4a7eb3;
}

/* Petit effet visuel sur hover */
details summary:hover::after {
  opacity: 1;
  transform: scale(1.1) rotate(0deg);
}
details[open] summary:hover::after {
  transform: scale(1.1) rotate(90deg);
}

/* Contenu animé */
details > div {
  padding: 16px 20px;
  animation: openSmooth 0.35s ease;
}
@keyframes openSmooth {
  from {opacity: 0; transform: translateY(-3px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Tableaux internes */
details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
details table th,
details table td {
  border: 1px solid #ddd;
  padding: 8px;
}
details table th {
  background: #f0ede7;
  font-weight: 600;
}
details table img {
  height: 35px;
  width: auto;
  vertical-align: middle;
}

/* =====================================================
   🎵 Exemple rythmique Takadimi
   ===================================================== */

/* Exemple rythmique Takadimi */
.exemple-rythme {
  text-align: center;
  margin: 10px auto;
  align-items: center;
  transform: scale(0.5);
}

.exemple-rythme img {
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
}


/* Responsive */
@media (max-width: 600px) {
  details table th, details table td {
    font-size: 0.9em;
    padding: 6px;
  }
  details summary {
    font-size: 1em;
    padding: 10px 12px;
  }
}

/* =====================================================
   🎵 VARIATIONS PAR TYPE DE CONTENU
   ===================================================== */

/* 🟡 Bloc théorie / Takadimi / Explication */
details.bloc-takadimi {
  border-left: 4px solid #b88c2a;
}
details.bloc-takadimi summary::after {
  color: #b88c2a;
}

/* 🟩 Bloc conseils pratiques */
details.bloc-conseil {
  border-left: 4px solid #5ca46c;
}
details.bloc-conseil summary {
  background: #f1f9f3;
}
details.bloc-conseil summary:hover {
  background: #e9f6ec;
}
details.bloc-conseil summary::after {
  color: #5ca46c;
}

/* 🔵 Bloc rythme / écoute / pratique */
details.bloc-rythme {
  border-left: 4px solid #4a7eb3;
}
details.bloc-rythme summary {
  background: #f0f6fc;
}
details.bloc-rythme summary:hover {
  background: #e8f1fa;
}
details.bloc-rythme summary::after {
  color: #4a7eb3;
}

/* =====================================================
   ✨ Apparition douce des <summary> au chargement
   ===================================================== */

@keyframes summaryFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

details[class^="bloc-"] summary {
  animation: summaryFadeIn 0.6s ease-out both;
  animation-delay: 0.1s;
}

/* Pour une apparition en cascade si plusieurs blocs à la suite */
details[class^="bloc-"]:nth-of-type(1) summary { animation-delay: 0.1s; }
details[class^="bloc-"]:nth-of-type(2) summary { animation-delay: 0.2s; }
details[class^="bloc-"]:nth-of-type(3) summary { animation-delay: 0.3s; }
details[class^="bloc-"]:nth-of-type(4) summary { animation-delay: 0.4s; }
details[class^="bloc-"]:nth-of-type(5) summary { animation-delay: 0.5s; }
