/* ---- FONTS ---- */
.font-display { font-family: 'Fraunces', Georgia, serif; }
.font-body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.font-accent { font-family: 'Caveat', cursive; }

/* ---- TRANSITIONS ---- */
html {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ---- WARM AMBIENT LIGHT (dark mode body) ---- */
.dark body,
.dark .ambient-glow {
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(251,191,36,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(176,101,224,0.03) 0%, transparent 50%);
}

/* ---- NOISE TEXTURE OVERLAY ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.03;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, #fbbf24 20%, #c084fc 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- WAVE SECTION DIVIDER ---- */
.wave-divider {
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}

/* ---- CARD HOVER — playful pounce ---- */
.card-pounce {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.card-pounce:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ---- WARM GLASSMORPHISM ---- */
.glass-warm {
  background: rgba(30, 27, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(251, 191, 36, 0.08);
}

/* ---- GENTLE FLOAT (decorative elements) ---- */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-element {
  animation: gentle-float 4s ease-in-out infinite;
}

/* ---- SCROLLBAR (warm tones) ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #141210;
}
::-webkit-scrollbar-thumb {
  background: #3a3530;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a4540;
}

/* ---- AFFILIATE BADGE ---- */
.affiliate-badge {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---- RESPECT REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
