 :root {
  --green: #28a745;
  --blue: #007bff;
  --white: #ffffff;
  --dark: #0f172a;
  --light: #f5f7fb;
  --accent: #00a19a;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial;
  color: #0b1222;
  background: var(--light);
  scroll-behavior: smooth;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: var(--blue);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent);
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
.site-header {
  background: #0c1c42;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
}
.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #dfe7ff;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--white);
}
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
}

/* ------------------------------
   HERO SECTIONS
------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  padding: 80px 0;
}
.hero-inner {
  display: grid;
  gap: 14px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
}
.cta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--white);
  color: #0d1935;
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ------------------------------
   PAGE HERO
------------------------------ */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid #d7e0f1;
  padding: 40px 0;
  text-align: center;
}
.page-hero h1 {
  margin: 0 0 6px 0;
  font-size: 2rem;
}

/* ------------------------------
   CONTENT SECTIONS
------------------------------ */
.content {
  padding: 40px 0;
}
.content h2 {
  margin-top: 0;
  font-size: 1.6rem;
  border-left: 5px solid var(--blue);
  padding-left: 10px;
  color: var(--dark);
}

/* ------------------------------
   ROSTER / PLAYER CARDS
------------------------------ */
.roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.player-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.player-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.player-info {
  padding: 16px;
}
.player-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0;
}
.player-position {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.player-bio {
  font-size: 0.9rem;
  color: #5b6b8f;
  line-height: 1.4;
}
.player-stats {
  font-size: 0.85rem;
  color: #6b7a99;
  background: var(--light);
  padding: 10px;
  border-top: 1px solid #e5e9f2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* ------------------------------
   TEAMS PREVIEW & CARDS
------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 18px 0 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  color: inherit;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.team-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 10px;
}

/* ------------------------------
   NEWS GRID
------------------------------ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 18px 0 40px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-3px);
}

/* ------------------------------
   TABLE STYLING
------------------------------ */
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eef1f6;
  text-align: left;
}
.table th {
  background: var(--light);
  font-weight: 700;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
  background: #0b1222;
  color: #b8c3e0;
  margin-top: 60px;
  padding-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 8px 0;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.copyright {
  border-top: 1px solid #1e2a4a;
  padding: 12px 0;
  text-align: center;
  color: #93a1c9;
  font-size: 0.9rem;
}

/* ------------------------------
   CONTACT FORM
------------------------------ */
.contact-form {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d7dff0;
  border-radius: 10px;
  margin-top: 6px;
}
.contact-form button {
  margin-top: 10px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.contact-form button:hover {
  background: var(--accent);
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 4%;
    background: #0b1222;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  }
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .nav-toggle {
    display: block;
  }
  .highlights .cards,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
/* BADGES */
.badges {
  margin: 10px 0;
}
.badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin: 3px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal.open {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 14px;
  position: relative;
  text-align: center;
}
.modal-content img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.modal-role {
  color: var(--blue);
  font-weight: 600;
}
.modal-details {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.modal-details li {
  margin-bottom: 6px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
.filters {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filters button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.filters button:hover {
  background: var(--accent);
  color: #000;
}
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 1rem 1.5rem;
}

.site-footer h4 {
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.site-footer p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e6e6e6;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-socials {
  margin-top: 0.8rem;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-socials a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #ddd;
}
/* Leadership Section */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.leader-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FFD700;
  margin-bottom: 1rem;
}

.leader-card h3 {
  margin: 0;
  color: #002B5B;
  font-size: 1.1rem;
}

.leader-card p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}
.site-footer {
  background: #002B5B;
  color: #ffffff;
  padding: 3rem 1rem 1.5rem;
}

.site-footer h4 {
  color: #FFD700;
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer a {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #FFD700;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1100px;
  margin: auto;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #ddd;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}
.officials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.official-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 1.2rem;
  text-align: center;
  transition: transform .3s ease;
}

.official-card:hover {
  transform: translateY(-6px);
}

.official-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: .8rem;
  border: 3px solid var(--accent);
}

.official-card h3 {
  margin: .3rem 0;
  color: var(--primary);
}

.official-card p {
  font-size: .9rem;
  color: #555;
}

.official-card .badge {
  display: inline-block;
  margin-top: .5rem;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .7rem;
}
/* ===============================
   GLOBAL RESPONSIVE FIX
=================================*/

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 16px;
}

img{
  max-width:100%;
  height:auto;
}

/* ===============================
   NAVIGATION RESPONSIVE
=================================*/

.nav-container{
  position:relative;
}

.nav-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

@media (max-width:992px){

  .nav-toggle{
    display:block;
  }

  .site-nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:var(--blue);
    padding:20px 0;
  }

  .site-nav ul{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .site-nav.show{
    display:block;
  }

  .brand-text{
    font-size:14px;
  }
}

/* ===============================
   HERO RESPONSIVE
=================================*/

@media (max-width:768px){

  .hero{
    padding:60px 20px !important;
    text-align:center;
  }

  .hero h1{
    font-size:28px;
  }

  .cta{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .cta .btn{
    width:100%;
    max-width:250px;
    text-align:center;
  }
}

/* ===============================
   CARDS RESPONSIVE
=================================*/

@media (max-width:992px){
  .cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

@media (max-width:600px){
  .cards{
    grid-template-columns:1fr;
  }
}

/* ===============================
   TEAM GRID RESPONSIVE
=================================*/

@media (max-width:992px){
  .team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

@media (max-width:600px){
  .team-grid{
    grid-template-columns:1fr;
  }
}

/* ===============================
   FOOTER RESPONSIVE
=================================*/

@media (max-width:768px){
  .footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}
/* =========================
   ROOT COLORS
========================= */
:root {
  --blue: #0a2c5a;
  --green: #008751;
  --white: #ffffff;
  --light: #f4f4f4;
}

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

body {
  font-family: Arial, sans-serif;
  background: var(--white);
  color: #222;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: var(--blue);
  color: var(--white);
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  width: 40px;
  margin-right: 10px;
}

.brand-text {
  font-weight: bold;
}

/* =========================
   NAVIGATION
========================= */
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a.active {
  border-bottom: 2px solid var(--green);
}

/* =========================
   HAMBURGER BUTTON
========================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 4px;
}

.btn-primary {
  background: var(--white);
  color: var(--blue);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

/* =========================
   CARDS
========================= */
.cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--light);
  padding: 20px;
  border-radius: 6px;
  flex: 1;
}

.link {
  text-decoration: none;
  color: var(--blue);
  font-weight: bold;
}

/* =========================
   TEAMS
========================= */
.team-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  background: var(--light);
  padding: 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  flex: 1;
  text-align: center;
}

.team-card img {
  width: 60px;
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--blue);
  color: var(--white);
  margin-top: 40px;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.socials a {
  color: var(--white);
  margin-right: 10px;
  font-size: 18px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* =========================
   MOBILE FIX (VERY IMPORTANT)
========================= */
@media (max-width: 992px) {

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--blue);
    padding: 20px 0;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .site-nav.show {
    display: block;
  }

  .cards,
  .team-grid,
  .footer-grid {
    flex-direction: column;
  }

}
/* ===== SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 500px;
}

.caption h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 18px;
}

/* Mobile Responsive */
@media(max-width:768px){
  .hero-slider {
    height: 50vh;
  }

  .caption h1 {
    font-size: 24px;
  }

  .caption p {
    font-size: 14px;
  }
}
.site-header{
  background:#002B5B;
  color:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:white;
}

.brand-logo{
  height:40px;
}

/* DESKTOP MENU */
.site-nav ul{
  display:flex;
  gap:20px;
  list-style:none;
  margin:0;
  padding:0;
}

.site-nav a{
  color:white;
  text-decoration:none;
}

/* MOBILE BUTTON */
.nav-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

/* ================= MOBILE MENU ================= */
@media(max-width:768px){

  .nav-toggle{
    display:block;
  }

  .site-nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#001f44;

    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
  }

  .site-nav.active{
    max-height:300px; /* animation */
  }

  .site-nav ul{
    flex-direction:column;
    padding:15px;
  }

  .site-nav li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
}
 /* FOOTER CLEAN PROFESSIONAL */
.site-footer{
  background:var(--primary);
  color:#fff;
  margin-top:50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:40px 0;
}

.footer-col h4{
  color:var(--gold);
  margin-bottom:15px;
}

.footer-col p{
  font-size:14px;
  color:#ddd;
  line-height:1.6;
}

/* LINKS */
.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col a{
  color:#ddd;
  text-decoration:none;
  transition:0.3s;
}

.footer-col a:hover{
  color:var(--gold);
}

/* SOCIAL ICONS */
.social-icons{
  margin-top:15px;
  display:flex;
  gap:10px;
}

.social-icons a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#ffffff15;
  transition:0.3s;
}

.social-icons i{
  color:#fff;
  font-size:16px;
}

.social-icons a:hover{
  background:var(--gold);
}

.social-icons a:hover i{
  color:#000;
}

/* LOGOS */
.footer-logos{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-logos img{
  width:100px;
  background:#fff;
  padding:5px;
  border-radius:5px;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  color:#ccc;
}

/* MOBILE */
@media(max-width:768px){
  .footer-col{
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

  .footer-logos{
    justify-content:center;
  }
}