
/* ===== AESTHETE COACHING ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(217, 119, 7, 0.3); }
  50% { box-shadow: 0 0 40px rgba(217, 119, 7, 0.6); }
}

.anim-fade-up { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-fade-in { opacity: 0; animation: fadeIn 1s ease-out forwards; }
.anim-fade-left { opacity: 0; animation: fadeInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-fade-right { opacity: 0; animation: fadeInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-scale { opacity: 0; animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gradient-text {
  background: linear-gradient(90deg, #d97707, #ffb77d, #d97707);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}

.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}
.img-reveal:hover img {
  transform: scale(1.05);
}

.link-anim {
  position: relative;
}
.link-anim::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d97707;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-anim:hover::after {
  width: 100%;
}
