:root {
  --green: #1b7a3d;
  --green-dark: #0f4d26;
  --gold: #f2b632;
  --blue: #2e6da4;
  --cream: #fbf7ec;
  --ink: #17251c;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 5%;
  background: rgba(15, 77, 38, 0.92);
  backdrop-filter: blur(4px);
}

.navbar .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar .brand img {
  height: 44px;
  width: 44px;
}

.navbar .brand span {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.92;
}

.navbar nav a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background-image:
    linear-gradient(180deg, rgba(10, 40, 20, 0.55) 0%, rgba(10, 40, 20, 0.72) 55%, rgba(10, 40, 20, 0.9) 100%),
    url('https://images.unsplash.com/photo-1679226273977-94501edd99db?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .crest {
  width: 120px;
  height: 120px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}

.hero .eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  margin-bottom: 0.8rem;
}

.hero p.tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 640px;
  color: #f2ead6;
  margin-bottom: 2.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(242, 182, 50, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Sections */
section { padding: 4.5rem 6% ; }

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: #55635a;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  font-size: 1.02rem;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid p { margin-bottom: 1rem; color: #333; }

.stat-row {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.stat {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  min-width: 140px;
}

.stat .num { font-size: 1.6rem; font-weight: 800; color: var(--green-dark); }
.stat .lbl { font-size: 0.85rem; color: #5a5a5a; text-transform: uppercase; letter-spacing: 0.04em; }

.crest-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.crest-box img { width: 240px; }

/* Honours */
.honours {
  background: var(--green-dark);
  color: #fff;
}

.honours .section-title, .honours .section-sub { color: #fff; }
.honours .section-sub { color: #cfe6d7; }

.honours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.honour-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1.6rem;
  text-align: center;
}

.honour-card .icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.honour-card h3 { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.3rem; }
.honour-card p { font-size: 0.92rem; color: #e4efe8; }

/* Teams */
.teams { background: #fff; }

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  border: 1px solid #e4e0d0;
  border-radius: 12px;
  padding: 1.6rem;
  text-align: center;
  background: var(--cream);
}

.team-card h3 { color: var(--green-dark); margin-bottom: 0.4rem; }
.team-card p { color: #5a5a5a; font-size: 0.92rem; }

/* Contact */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-card h3 { color: var(--green-dark); margin-bottom: 1.1rem; font-size: 1.3rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.contact-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item a, .contact-item span.txt { font-size: 0.98rem; color: #333; word-break: break-word; }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Footer */
footer {
  background: var(--ink);
  color: #cfd8d1;
  text-align: center;
  padding: 2.4rem 1.5rem 1.6rem;
}

footer .brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

footer .brand-line img { height: 34px; width: 34px; }
footer .brand-line span { font-weight: 700; color: #fff; }

footer .socials { margin-bottom: 1rem; }
footer .socials a {
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

footer p { font-size: 0.82rem; color: #8a9690; }

@media (max-width: 820px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .navbar nav a { margin-left: 1rem; font-size: 0.85rem; }
  .crest-box img { width: 180px; }
}
