:root {
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
}

.font-heading {
  font-family: var(--font-heading);
}

/* ---------------------------------------------------------------
   Reveal-on-scroll (replaces framer-motion fade/slide-in effects)
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   Mobile nav link fade-in (replaces framer-motion stagger)
---------------------------------------------------------------- */
.mobile-nav-link {
  opacity: 0;
  transition: opacity 0.4s ease, color 0.3s ease;
}
.mobile-nav-link.opacity-100 {
  opacity: 1;
}

/* ---------------------------------------------------------------
   Certificates marquee (replaces framer-motion infinite scroll)
---------------------------------------------------------------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 32s linear infinite;
}

/* ---------------------------------------------------------------
   Admin panel form inputs
---------------------------------------------------------------- */
.admin-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
  color: #0f172a;
  background: #fff;
}
.admin-input:focus {
  border-color: #2E5BFF;
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.15);
}
