/**
 * Charles Traiteur — Animations globales
 * Fade-in au scroll + transitions de pages (splash vidéo)
 * @package charlestraiteur
 */

/* ── Éléments animés au scroll ──────────────────────────────────────────────── */
.ct-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.ct-reveal.ct-reveal--left {
  transform: translateX(-50px);
}

.ct-reveal.ct-reveal--right {
  transform: translateX(50px);
}

.ct-reveal.ct-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Délai en cascade pour les enfants */
.ct-reveal:nth-child(2) { transition-delay: 0.08s; }
.ct-reveal:nth-child(3) { transition-delay: 0.16s; }
.ct-reveal:nth-child(4) { transition-delay: 0.24s; }
.ct-reveal:nth-child(5) { transition-delay: 0.32s; }
.ct-reveal:nth-child(6) { transition-delay: 0.40s; }

/* ── Splash screen — transition entre pages ─────────────────────────────────── */
body.ct-splash-open {
  overflow: hidden;
}

#ct-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

#ct-splash.ct-splash--in {
  opacity: 1;
  pointer-events: all;
}

#ct-splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

#ct-splash.ct-splash--in #ct-splash-video {
  opacity: 0.6;
}

.ct-splash-logo {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: ct-splash-logo-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

@keyframes ct-splash-logo-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ct-splash-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(48px, 8vw, 96px);
  color: #fff;
  display: block;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.ct-splash-subtitle {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
