/* ============================================
   TCHOWOURE — Cover Hero animations & sizing
   (Used by tchowoure/cover-hero)
   ============================================ */

.tchowoure-cover-hero {
  height: var(--tchowoure-cover-height-mobile, 95vh);
}

@media (min-width: 768px) {
  .tchowoure-cover-hero {
    height: var(--tchowoure-cover-height-desktop, 600px);
  }
}

@keyframes tchowoure-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.07);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

.animate-blob {
  animation: tchowoure-blob 9s infinite ease-in-out;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

@keyframes tchowoure-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tchowoure-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: tchowoure-fade-in 700ms ease forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: tchowoure-fade-in-up 800ms ease forwards;
}

/* Delay helpers */
.animation-delay-200 {
  animation-delay: 200ms;
}
.animation-delay-300 {
  animation-delay: 300ms;
}
.animation-delay-400 {
  animation-delay: 400ms;
}
.animation-delay-600 {
  animation-delay: 600ms;
}


