/* ============================================================
   ESSENCE OF AFRICA — SHARED BASE STYLES
   Cached across every page. Keeps inline page CSS lean.
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

a { color: inherit; }

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Default focus ring for keyboard users only — avoids the focus
   ring on mouse clicks but always shows it on Tab. */
:focus-visible {
  outline: 2px solid var(--eoa-gold, #c8962a);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Footer social SVG (Instagram + LinkedIn after Font Awesome removal) */
.footer-social-ico {
  width: 18px; height: 18px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.footer-social:hover .footer-social-ico {
  transform: translateY(-2px) scale(1.05);
}

/* Honour reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
