/* ── Base ────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll Animations ───────────────────────────────── */
.scroll-anim {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When JS is disabled, content is always visible (progressive enhancement already applied) */

/* ── Mobile Menu ─────────────────────────────────────── */
#mobile-menu {
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Navbar Glass Effect ─────────────────────────────── */
#navbar.scrolled {
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(4, 120, 87, 0.08);
}

/* ── Form Focus Styles ───────────────────────────────── */
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* ── Selection Color ─────────────────────────────────── */
::selection {
  background: #065f46;
  color: #FDF8F0;
}

/* ── Reduced Motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .scroll-anim {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .animate-bounce {
    animation: none;
  }
}

/* ── Utility ─────────────────────────────────────────── */
.smooth-scroll-offset {
  scroll-margin-top: 80px;
}
