/* ===== SHARED.CSS — DMP Panthers FC ===== */
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Barlow+Condensed:ital,wght@0,400;0,700;0,900;1,700&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --gold: #D4A017;
  --gold2: #F0C030;
  --navy: #0f1d3a;
  --navy2: #132236;
  --teal: #1fbfb8;
  --white: #FFFDF5;
  --green: #27AE60;
  --red: #E03E2D;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(10,16,30,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Boogaloo', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Boogaloo', cursive;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212,160,23,0.3);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,160,23,0.4); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-teal:hover { background: #17a8a1; transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(31,191,184,0.08) 0%, transparent 50%);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.page-breadcrumb a { color: var(--teal); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--gold); }

.page-hero-title {
  font-family: 'Boogaloo', cursive;
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.page-hero-title .gold { color: var(--gold); }

.page-hero-sub {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
  opacity: 0.4;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 40px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: 'Boogaloo', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 40px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,16,30,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.4rem; padding: 10px 24px; }
  .nav-cta { font-size: 1.3rem; padding: 12px 32px; }
  .nav-burger { display: block; z-index: 1001; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-title { font-size: 2.6rem; }
  .nav-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px !important; }
}

/* OVERFLOW FIX */
html, body { overflow-x: hidden; }
.section-inner { padding-left: 20px !important; padding-right: 20px !important; }
@media (max-width: 768px) {
  .page-hero-inner { padding: 0 16px !important; }
  .split-section { grid-template-columns: 1fr !important; }
  .nav-logo img { height: 36px; }
}
