@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --yellow: #F5C842;
  --yellow-dark: #e0b030;
  --red: #B91C1C;
  --red-light: #dc2626;
  --navy: #1E3A6E;
  --navy-light: #2a4f96;
  --off-white: #F5F4EF;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #555;
  --radius: 20px;
  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--off-white); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  background: var(--navy);
  box-shadow: 0 3px 20px rgba(0,0,0,.25);
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: var(--yellow);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand span { font-size: .6rem; font-family: var(--body); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; line-height: 1; margin-top: 2px; }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--yellow); color: var(--navy); }

/* ── HERO ── */
@media (max-width: 700px) {
	.hero {
		padding: 114px 5% 60px!important;
	}
}

.hero {
  min-height: 100vh;
  background: var(--off-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .13;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 30px; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .6s .2s forwards;
}
.hero-badge svg { color: var(--yellow); }
.hero-eyebrow {
  font-family: var(--body);
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp .6s .35s forwards;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: .92;
  color: var(--red);
  letter-spacing: .02em;
  margin-bottom: 4px;
  opacity: 0; animation: fadeUp .7s .5s forwards;
}
.hero-sub-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: 30px;
  opacity: 0; animation: fadeUp .7s .65s forwards;
}
.hero-pills {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s .8s forwards;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 40px;
  font-weight: 800; font-size: .88rem;
  background: var(--yellow); color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}
.pill.outline {
  background: transparent;
  border: 2.5px solid var(--navy);
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--yellow);
}
.hero-cta {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s .95s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 40px;
  font-weight: 800; font-size: .95rem; letter-spacing: .02em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn:active { transform: translate(3px,3px) !important; box-shadow: none !important; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 5px 5px 0 var(--navy); }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--navy); }
.btn-secondary { background: var(--yellow); color: var(--navy); box-shadow: 5px 5px 0 var(--red); }
.btn-secondary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--red); }


.hero-announcement {
  display: inline-block;
  background: var(--red);
  color: var(--white);

  padding: 10px 22px;
  border-radius: 40px;

  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;

  margin-bottom: 18px;

  border: 3px solid var(--navy);

  box-shadow: 5px 5px 0 var(--yellow);

  animation: pulseAnnouncement 2s infinite;
}

@keyframes pulseAnnouncement {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }

}


@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── SECTION SHARED ── */
.section { padding: 90px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
  margin-bottom: 14px;
}
.tag-red { background: var(--red); color: var(--white); }
.tag-navy { background: var(--navy); color: var(--white); }
.tag-yellow { background: var(--yellow); color: var(--navy); }

h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 16px;
}
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 580px; }

/* reveal */
.reveal { opacity:0; transform:translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── WHEN/WHERE ── */
.when { background: var(--yellow); }
.when h2 { color: var(--navy); }
.when-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
  margin-top: 44px;
}
.when-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  transition: transform .2s, box-shadow .2s;
}
.when-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--navy); }
.when-icon { font-size: 2.2rem; margin-bottom: 12px; }
.when-card h3 { font-family: var(--display); font-size: 2rem; color: var(--red); letter-spacing: .04em; margin-bottom: 6px; }
.when-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; font-weight: 600; }

/* ── CAMPUSES ── */
.campuses { background: var(--off-white); }
.campuses h2 { color: var(--navy); }

.campus-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 36px 0 28px;
}
.campus-tab {
  padding: 10px 22px; border-radius: 30px;
  font-weight: 800; font-size: .9rem; cursor: pointer;
  border: 2.5px solid var(--navy);
  background: transparent; color: var(--navy);
  transition: background .2s, color .2s, box-shadow .2s;
}
.campus-tab.active, .campus-tab:hover {
  background: var(--navy); color: var(--yellow);
  box-shadow: 4px 4px 0 var(--red);
}

.campus-panel { display: none; }
.campus-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.campus-info {
  background: var(--white); border-radius: var(--radius);
  padding: 34px 30px;
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--yellow);
}
.campus-num {
  font-family: var(--display); font-size: 4rem; color: var(--yellow);
  -webkit-text-stroke: 2.5px var(--navy); line-height: 1; margin-bottom: 10px;
}
.campus-uni {
  display: inline-block;
  font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.campus-info h3 {
  font-family: var(--display); font-size: 2.2rem; color: var(--navy); letter-spacing: .03em;
  margin-bottom: 18px;
}
.info-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: .92rem;
}
.info-row .ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 8px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  border: 2px solid var(--navy);
}
.info-row div { line-height: 1.55; }
.info-row strong { font-weight: 800; color: var(--navy); display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.info-row span { color: var(--muted); font-weight: 600; }

.campus-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--red);
  background: var(--navy);
  display: flex; flex-direction: column;
  min-height: 320px;
}
.map-inner {
  flex: 1;
  background: linear-gradient(135deg, #1E3A6E 0%, #2a4f96 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 30px;
  text-align: center;
}
.map-inner svg { opacity: .6; }
.map-inner p { color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 600; line-height: 1.6; }
.map-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 30px;
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: .88rem; text-decoration: none;
  border: 2.5px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  transition: transform .15s, box-shadow .15s;
}
.map-link:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--navy); }

@media (max-width: 700px) {
  .campus-panel.active { grid-template-columns: 1fr; }
}

/* ── GALLERY ── */
.gallery { background: var(--navy); }
.gallery h2 { color: var(--yellow); }
.gallery .lead { color: rgba(255,255,255,.55); }

.gallery-grid {
  columns: 3; column-gap: 14px;
  margin-top: 44px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px; overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: transform .2s, border-color .2s;
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--yellow); z-index: 2; }
.gallery-placeholder {
  width: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 32px 16px;
  background: rgba(255,255,255,.06);
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .1em;
  text-align: center;
}
.gallery-placeholder span { font-size: 2rem; }

/* gallery lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--white); cursor: pointer; line-height: 1;
  font-family: var(--body); font-weight: 900;
  background: none; border: none;
}

@media (max-width: 620px) {
  .gallery-grid { columns: 2; }
}

/* ── JOIN ── */
.join { background: var(--red); }
.join h2 { color: var(--white); }
.join .lead { color: rgba(255,255,255,.75); }

.join-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.join-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  text-decoration: none; display: flex; flex-direction: column; align-items: center;
  transition: transform .2s, box-shadow .2s;
}
.join-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--navy); }
.join-ico { font-size: 2.5rem; margin-bottom: 14px; }
.join-card h3 { font-family: var(--display); font-size: 1.7rem; color: var(--navy); letter-spacing: .04em; margin-bottom: 8px; }
.join-card p { font-size: .88rem; color: var(--muted); font-weight: 600; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.join-btn {
  display: inline-block;
  padding: 10px 24px; border-radius: 30px;
  font-weight: 900; font-size: .88rem;
  border: 2.5px solid var(--navy);
}
.join-btn.green { background: #25d366; color: var(--white); box-shadow: 4px 4px 0 var(--navy); }
.join-btn.yellow { background: var(--yellow); color: var(--navy); box-shadow: 4px 4px 0 var(--navy); }
.join-btn.navy { background: var(--navy); color: var(--white); box-shadow: 4px 4px 0 var(--red); }

/* ── FOOTER ── */
footer {
  background: #0e1f3c;
  padding: 30px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 4px solid var(--yellow);
}
footer p { font-size: .82rem; color: rgba(255,255,255,.4); font-weight: 600; }
footer a { color: var(--yellow); text-decoration: none; font-weight: 700; font-size: .82rem; }
footer a:hover { text-decoration: underline; }

/* ── WAVE SVG ── */
.wave-yellow { background: var(--yellow); }
.wave-offwhite { background: var(--off-white); }
.wave-navy { background: var(--navy); }
.wave-red { background: var(--red); }

.section-wave { display: block; width: 100%; overflow: hidden; line-height: 0; }

/* ── MOBILE NAV ── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .section { padding: 60px 5%; }
  .campus-tabs { gap: 8px; }
  .campus-tab { font-size: .78rem; padding: 8px 14px; }
}
