/* =========================
   1. CSS RESET / BASE
   ========================= */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Allow percentage-based heights */
html,
body {
  height: 100%;
}

/* Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* =========================
   2. BASE TYPOGRAPHY
   ========================= */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 600;
}

/* Paragraph rhythm */
p {
  max-width: 65ch;
}

/* =========================
   3. INTERACTIVE ELEMENTS
   ========================= */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* =========================
   4. DEFAULT CLEANUP
   ========================= */

ul,
ol {
  padding-left: 1.25rem;
}

li {
  line-height: 1.5;
}

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* Smooth scrolling (respect user prefs) */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn{padding: 0 2vw; border-radius: 50px;}

.coral{background:#ff796e;}
.yellow{background:#ffd84d;}
.beige{background:#f8f4ec;}
.sky-blue{background:#23cdd8;}

.navy-text{color:#1b1c45;}

.row{flex-direction: row;}
.column{flex-direction: column;}

#announcement-bar{
  width: 100%; padding: 1% 0;
  display: flex; flex-direction: row; align-items:center; justify-content:center;
  font-size: 0.8rem;
}

.site-header div {padding: 2% 0; gap: 6%; font-size: 0.9rem; letter-spacing: 0.02rem;}

.centered-flex{display: flex; align-items:center; justify-content:center;}

#homepage-hero{width: 100%; height: 50vh; background: url('');}
