/* ===================================================
   CÉLÉBRATIONS - CSS COMPLET FINAL
=================================================== */

/* ===== CONTENU DYNAMIQUE ===== */
.celebration-facets-content {
  position: relative;
  min-height: 600px;
}

.celebration-panel {
  display: none;
  opacity: 0;
}

.celebration-panel.active {
  display: block;
  animation: celebrationPanelFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes celebrationPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visuel du panel */
.celebration-panel-visual {
  position: relative;
  width: 100%;
  height: 480px;
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: 4px;
}

.celebration-visual-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.celebration-panel-visual:hover .celebration-visual-image {
  transform: scale(1.08);
}

.celebration-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(13, 13, 13, 0.4) 100%
  );
  pointer-events: none;
}

/* Corps du panel */
.celebration-panel-body {
  max-width: 680px;
}

.celebration-panel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e0b94a;
  padding: 6px 16px;
  border: 1px solid rgba(224, 185, 74, 0.3);
  margin-bottom: 25px;
  border-radius: 2px;
}

.celebration-panel-heading {
  font-size: 42px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.celebration-panel-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 35px;
}

/* Features liste */
.celebration-panel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
  padding: 0;
}

.celebration-panel-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: rgba(224, 185, 74, 0.03);
  border-left: 2px solid rgba(224, 185, 74, 0.3);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.celebration-panel-features li:hover {
  background: rgba(224, 185, 74, 0.06);
  border-left-color: #e0b94a;
  transform: translateX(5px);
}

.celebration-feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e0b94a;
  font-size: 14px;
  font-weight: 700;
}

.celebration-feature-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.85);
}

/* Lien CTA */
.celebration-feature-link {
  margin-top: 35px;
}

.celebration-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e0b94a;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.celebration-cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e0b94a;
  transition: width 0.3s ease;
}

.celebration-cta-link:hover {
  gap: 15px;
  text-shadow: 0 0 15px rgba(224, 185, 74, 0.5);
}

.celebration-cta-link:hover::after {
  width: 100%;
}

.celebration-cta-link svg {
  transition: transform 0.3s ease;
}

.celebration-cta-link:hover svg {
  transform: translateX(5px);
}

/* ============================================
   BARRE DE PROGRESSION DESKTOP - 6 ITEMS
============================================ */

.celebration-timeline-nav[data-active="1"]::after {
  height: calc((100% - 60px) * 0.5 / 5);
}

.celebration-timeline-nav[data-active="2"]::after {
  height: calc((100% - 60px) * 1.35 / 5);
}

.celebration-timeline-nav[data-active="3"]::after {
  height: calc((100% - 60px) * 2.35 / 5);
}

.celebration-timeline-nav[data-active="4"]::after {
  height: calc((100% - 60px) * 3.2 / 5);
}

.celebration-timeline-nav[data-active="5"]::after {
  height: calc((100% - 60px) * 4.2 / 5);
}

.celebration-timeline-nav[data-active="6"]::after {
  height: calc((100% - 60px) * 5 / 5);
}

/* ============================================
   PAGINATION MOBILE
============================================ */

.celebration-mobile-pagination {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(224, 185, 74, 0.08);
}

.celebration-pagination-btn {
  font-family: 'Poppins', sans-serif;
  background: transparent;
  border: 1px solid rgba(224, 185, 74, 0.2);
  color: rgba(224, 185, 74, 0.7);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.celebration-pagination-btn:hover {
  background: rgba(224, 185, 74, 0.05);
  border-color: rgba(224, 185, 74, 0.4);
  color: #e0b94a;
}

.celebration-pagination-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.celebration-page-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.celebration-page-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(224, 185, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.celebration-page-dot.active {
  background: #e0b94a;
  width: 22px;
  border-radius: 4px;
}

/* ============================================
   RESPONSIVE MOBILE + TABLETTE
============================================ */
@media (max-width: 1024px) {
  
  .celebration-panel-visual {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .celebration-panel-heading {
    font-size: 32px;
  }
  
  .celebration-panel-text {
    font-size: 15px;
  }
  
  .celebration-panel-features li {
    padding: 14px 16px;
  }
  
  .celebration-mobile-pagination {
    display: block;
  }
  
  .celebration-timeline-btn[data-index="4"],
  .celebration-timeline-btn[data-index="5"],
  .celebration-timeline-btn[data-index="6"] {
    display: none;
  }
  
  .celebration-timeline-nav[data-active="1"]::after {
    width: 16.66%;
    height: auto;
  }
  
  .celebration-timeline-nav[data-active="2"]::after {
    width: 50%;
    height: auto;
  }
  
  .celebration-timeline-nav[data-active="3"]::after {
    width: 83.33%;
    height: auto;
  }
  
}


