/* ══════════════════════════════════════════
   DELALI'S HAIR & BEAUTY — Luxury Animations System
   ══════════════════════════════════════════ */

/* ── Entrance Fades ── */
[data-animate] {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="scale-in"] {
  transform: scale(0.95);
}

/* ── Active Animation Classes ── */
.animated {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Specific Delays ── */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* ── Hero Scroll Pulse ── */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--brand-light), transparent);
  animation: scroll-down-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-down-pulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── Custom Particles Floating ── */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(50px) scale(1.5);
    opacity: 0;
  }
}

/* ── Ticker Scrolling Marquee ── */
.brands-scroll {
  display: flex;
  gap: 60px;
  animation: drift-ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes drift-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Storytelling Shines ── */
.note-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(197, 160, 89, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.08);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.note-row:hover {
  background: var(--brand-subtle);
  border-color: var(--brand-primary);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.05);
}

.section-light .note-row {
  background: rgba(197, 160, 89, 0.02);
  border: 1px solid var(--light-border);
}

.section-light .note-row:hover {
  background: rgba(197, 160, 89, 0.06);
  border-color: var(--brand-primary);
}

.note-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--brand-light);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: all var(--transition-base);
}

.note-row:hover .note-icon {
  background: var(--brand-primary);
  color: #0a0908;
  transform: scale(1.1);
}
