/* ==========================================================================
   PAGE : COIN DU CHEF
   ========================================================================== */

/* --- 1. Section Hero (Layout Mobile Friendly) --- */
.chef-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Utilisation de dvh pour gérer la barre d'adresse mobile */
  min-height: 100vh; 
  min-height: 100dvh; 
  
  padding: 80px 20px; /* Padding de sécurité pour ne pas coller aux bords */
  overflow: hidden;
  background-color: var(--clr-text-main);
}

/* --- 2. Arrière-plan Vidéo --- */
.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--clr-text-soft), transparent 40%);
}

/* --- 3. Contenu Central --- */
.chef-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.chef-content {
  max-width: 640px;
  text-align: center;
  color: var(--clr-text-inverse);
}

/* Icône / Logo */
.chef-icon-wrapper {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-l) auto;
  color: var(--clr-accent-gold);
}

.chef-icon-wrapper svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

/* Animation Flottante */
.floating-anim {
  animation: floatVertical 4s ease-in-out infinite;
}

@keyframes floatVertical {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* --- 4. Typographie --- */
.chef-title {
  margin-bottom: var(--space-m);

  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--clr-accent-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chef-description {
  margin-bottom: var(--space-xl);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.95;
}

.chef-description p {
  margin-bottom: var(--space-s);
}

.chef-description strong {
  font-weight: 600;
  color: var(--clr-accent-gold);
}

/* --- 5. Bouton Gold (Override) --- */
.cta-button.gold {
  color: var(--clr-text-soft);
  background-color: var(--clr-accent-gold);
  border: none;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--clr-accent-gold), transparent 60%);
}

.cta-button.gold:hover {
  background-color: color-mix(in srgb, var(--clr-accent-gold), white 20%);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--clr-accent-gold), transparent 50%);
  transform: scale(1.02);
}

.cta-button.gold:active {
  transform: scale(0.96);
}

.cta-button.gold .lucide {
  color: var(--clr-text-soft);
}

/* --- 6. Responsive --- */
@media (max-width: 768px) {
  .chef-page-hero {
      padding-top: 100px; /* On compense le header fixe */
      align-items: flex-start; /* On remonte le texte vers le haut */
  }

  .chef-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .chef-icon-wrapper {
    width: 80px;
    margin-bottom: 24px;
  }
  
  .chef-description {
      font-size: 1rem;
  }
}
