/* ============================================
   Masketeers — Global Stylesheet
   Shared across all feeder pages
   ============================================ */

@font-face {
  font-family: 'Eyeful';
  src: url('/fonts/eyeful.woff2') format('woff2'),
       url('/fonts/eyeful.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Hooli';
  src: url('/fonts/hooli-Regular.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Hooli';
  src: url('/fonts/hooli-Italic.woff2') format('woff2');
  font-weight: normal; font-style: italic; font-display: block;
}

:root {
  --coral:      #F16364;
  --blue:       #2A73A6;
  --blue-light: #5390C8;
  --yellow:     #F8FFA4;
  --green:      #66BD5A;
  --white:      #FFFFFF;
  --bg:         #5390C8;
  --nav-bg:     #295788;
  --nav-h:      80px;
  --font-display: 'Eyeful', sans-serif;
  --font-body:    'Hooli', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #295788; }
body { font-family: var(--font-body); background: #295788; color: #fff; overflow-x: clip; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.page-wrap { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 4vw; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg); height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
}
.nav-logo { height: 54px; width: auto; max-width: 280px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--white); letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 2px; }

/* MOBILE DRAWER */
.nav-drawer { display: none; position: fixed; inset: 0; z-index: 200; }
.nav-drawer.open { display: block; }
.nav-drawer-overlay { position: absolute; inset: 0; background: #295788; }
.nav-drawer-panel {
  position: absolute; inset: 0;
  background: #295788; padding: 2rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
}
.nav-drawer-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 2.2rem; cursor: pointer; line-height: 1;
}
.nav-drawer-links { list-style: none; display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.nav-drawer-links a {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--white); letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-drawer-links a:hover { color: var(--yellow); }

/* FOOTER */
.footer { background: #295788; padding: 2rem 6vw; text-align: center; }
.footer-logo { height: 36px; margin: 0 auto 1rem; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; list-style: none; margin-bottom: 1rem;
}
.footer-links a {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--white); text-transform: uppercase;
  opacity: 0.85; transition: opacity 0.2s; letter-spacing: 0.03em;
}
.footer-links a:hover { opacity: 1; }
.footer-copy { font-family: 'Hooli', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
