:root {
      --black: #0b0b0c;
      --dark: #111214;
      --card: #17181b;
      --yellow: #f4c400;
      --yellow-dark: #d9ac00;
      --white: #ffffff;
      --muted: #a5a7ad;
      --border: rgba(255,255,255,.09);
      --max: 1180px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; object-fit: cover; }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: auto;
    }

    .topbar {
      background: var(--yellow);
      color: #111;
      font-size: 13px;
      font-weight: 700;
    }
    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11,11,12,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--yellow);
      color: #111;
      font-size: 24px;
      box-shadow: 0 0 0 4px rgba(244,196,0,.12);
    }
    .brand-text strong {
      display: block;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 22px;
      line-height: .95;
      letter-spacing: .4px;
    }
    .brand-text span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      font-weight: 600;
    }
    nav a { color: #d7d7da; transition: .2s; }
    nav a:hover { color: var(--yellow); }

    .nav-cta {
      background: var(--yellow);
      color: #111 !important;
      padding: 11px 17px;
      border-radius: 7px;
      font-weight: 800;
    }

    .menu { display: none; border: 0; background: none; color: white; font-size: 28px; }

    .hero {
      min-height: 650px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,7,8,.98) 0%, rgba(7,7,8,.82) 45%, rgba(7,7,8,.35) 100%),
        url("../assets/images/volleyball.png") center/cover;
    }
    /* .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 200px;
      background: linear-gradient(transparent, var(--black));
    } */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 690px;
      padding: 90px 0;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--yellow);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 3px;
      background: var(--yellow);
    }
    h1 {
      font-family: "Barlow Condensed", sans-serif;
      font-size: clamp(58px, 8vw, 98px);
      line-height: .87;
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 24px;
    }
    h1 span { color: var(--yellow); }
    .hero p {
      color: #d3d3d5;
      max-width: 590px;
      font-size: 17px;
      margin-bottom: 32px;
    }
    .buttons { display: flex; flex-wrap: wrap; gap: 12px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 21px;
      border-radius: 7px;
      font-weight: 800;
      font-size: 14px;
    }
    .btn-primary { background: var(--yellow); color: #111; }
    .btn-outline { border: 1px solid rgba(255,255,255,.25); color: white; }

    section { padding: 90px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 38px;
    }
    .section-label {
      color: var(--yellow);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    h2 {
      font-family: "Barlow Condensed", sans-serif;
      font-size: clamp(42px, 5vw, 62px);
      line-height: .95;
      text-transform: uppercase;
    }
    .section-head p {
      max-width: 470px;
      color: var(--muted);
      font-size: 14px;
    }

    .stats {
      /* margin-top: -55px; */
      padding: 50px 0px;
      position: relative;
      z-index: 5;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }
    .stat {
      padding: 28px 25px;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: 0; }
    .stat strong {
      display: block;
      color: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 42px;
      line-height: 1;
    }
    .stat span { color: var(--muted); font-size: 13px; }

    .about {
      background: #101113;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 70px;
      align-items: center;
    }
    .about-image {
      min-height: 470px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: #222;
    }
    .about-image img { height: 100%; }
    .about-image::after {
      content: "PAVA";
      position: absolute;
      bottom: 18px;
      right: 18px;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 70px;
      font-weight: 800;
      line-height: 1;
      color: rgba(255,255,255,.85);
    }
    .about-copy p {
      color: var(--muted);
      margin: 20px 0;
      max-width: 580px;
    }
    .feature-list { display: grid; gap: 14px; margin-top: 28px; }
    .feature {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .feature-icon {
      flex: 0 0 36px;
      height: 36px;
      border-radius: 7px;
      background: rgba(244,196,0,.12);
      color: var(--yellow);
      display: grid;
      place-items: center;
      font-weight: 900;
    }
    .feature strong { display: block; font-size: 14px; }
    .feature span { color: var(--muted); font-size: 13px; }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .news-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: transform .2s, border-color .2s;
    }
    .news-card:hover {
      transform: translateY(-5px);
      border-color: rgba(244,196,0,.4);
    }
    .news-image { height: 205px; }
    .news-body { padding: 21px; }
    .date { color: var(--yellow); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
    .news-body h3 {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 27px;
      line-height: 1;
      text-transform: uppercase;
      margin: 9px 0 12px;
    }
    .news-body p { color: var(--muted); font-size: 13px; }

    .events { background: #101113; }
    .event-list { display: grid; gap: 12px; }
    .event {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 18px 20px;
      border: 1px solid var(--border);
      background: var(--card);
      border-radius: 10px;
    }
    .event-date {
      text-align: center;
      background: var(--yellow);
      color: #111;
      border-radius: 7px;
      padding: 9px;
      font-weight: 900;
    }
    .event-date strong { display: block; font-family: "Barlow Condensed"; font-size: 29px; line-height: .9; }
    .event-date span { font-size: 10px; text-transform: uppercase; }
    .event h3 { font-size: 16px; margin-bottom: 4px; }
    .event p { color: var(--muted); font-size: 12px; }
    .event-tag {
      padding: 6px 10px;
      border-radius: 99px;
      background: rgba(244,196,0,.1);
      color: var(--yellow);
      font-size: 11px;
      font-weight: 800;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      grid-template-rows: 220px 220px;
      gap: 12px;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      background: #222;
    }
    .gallery-item:first-child { grid-row: span 2; }
    .gallery-item img { height: 100%; transition: transform .35s; }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item span {
      position: absolute;
      left: 14px;
      bottom: 12px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-shadow: 0 1px 5px #000;
    }

    .cta {
      background:
        linear-gradient(90deg, rgba(244,196,0,.96), rgba(244,196,0,.84)),
        url("../assets/images/volleyball.png") center/cover;
      color: #111;
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 35px;
    }
    .cta h2 { max-width: 650px; }
    .cta p { max-width: 570px; margin-top: 10px; font-size: 14px; }
    .btn-dark { background: #111; color: white; }

    footer {
      padding: 55px 0 25px;
      background: #080809;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 45px;
      border-bottom: 1px solid var(--border);
    }
    footer p, footer a { color: var(--muted); font-size: 13px; }
    footer .brand { margin-bottom: 18px; }
    .footer-title {
      color: white;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 15px;
    }
    .footer-links { display: grid; gap: 8px; }
    .copyright {
      padding-top: 22px;
      color: #686a70;
      font-size: 11px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    @media (max-width: 850px) {
      nav { display: none; }
      .menu { display: block; }
      .hero { min-height: 610px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: 0; }
      .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
      .about-grid { grid-template-columns: 1fr; gap: 35px; }
      .news-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 160px 160px; }
      .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > :first-child { grid-column: span 2; }
    }

    @media (max-width: 560px) {
      .container { width: min(var(--max), calc(100% - 28px)); }
      .topbar-inner { justify-content: center; text-align: center; }
      .topbar-inner span:last-child { display: none; }
      .brand-text strong { font-size: 19px; }
      .hero-content { padding: 70px 0 110px; }
      h1 { font-size: 60px; }
      section { padding: 70px 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat { padding: 22px 15px; }
      .event { grid-template-columns: 65px 1fr; }
      .event-tag { display: none; }
      .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 180px 140px 140px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: auto; }
      .copyright { flex-direction: column; }
    }
  
    /* ===== Bright Theme ===== */
    body {
      background: #f7f7f5;
      color: #111214;
    }

    header {
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid #e5e5e5;
    }

    .brand-text strong { color: #111214; }
    nav a { color: #33353a; }
    nav a:hover { color: #c69f00; }
    .menu { color: #111214; }

    .hero {
      background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 45%, rgba(255,255,255,.30) 100%),
        url("../assets/images/volleyball.png") center/cover;
    }

    .hero::after {
      background: linear-gradient(transparent, #f7f7f5);
    }

    .hero p { color: #505158; }

    .btn-outline {
      border-color: #d4d4d4;
      color: #111214;
      background: rgba(255,255,255,.65);
    }

    .stats-grid {
      background: #fff;
      border-color: #e3e3e3;
      box-shadow: 0 12px 35px rgba(0,0,0,.06);
    }

    .stat {
      border-color: #e5e5e5;
    }

    .stat span { color: #666970; }

    .about,
    .events {
      background: #fff;
    }

    .section-head p,
    .about-copy p {
      color: #666970;
    }

    .feature span { color: #707278; }

    .news-card,
    .event {
      background: #fff;
      border-color: #e3e3e3;
      box-shadow: 0 8px 25px rgba(0,0,0,.045);
    }

    .news-card:hover {
      border-color: rgba(244,196,0,.65);
      box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }

    .news-body p,
    .event p { color: #686b72; }

    .event-tag {
      background: rgba(244,196,0,.14);
    }

    .cta {
      background:
        linear-gradient(90deg, rgba(244,196,0,.96), rgba(244,196,0,.88)),
        url("../assets/images/volleyball.png") center/cover;
    }

    footer {
      background: #111214;
    }

    footer p, footer a { color: #a8aaaf; }
    .footer-title { color: #fff; }

    /* Add a subtle light section contrast around the main content */
    #news,
    #teams {
      background: #f7f7f5;
    }

  
    /* ===== Hybrid Theme: Black Navigation + Dark Hero ===== */
    header {
      background: rgba(11,11,12,.96);
      border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .brand-text strong { color: #fff; }
    nav a { color: #d7d7da; }
    nav a:hover { color: var(--yellow); }
    .menu { color: #fff; }

    .hero {
      background:
        linear-gradient(90deg, rgba(7,7,8,.98) 0%, rgba(7,7,8,.84) 45%, rgba(7,7,8,.42) 100%),
        url("../assets/images/volleyball.png") center/cover;
    }

    .hero::after {
      background: linear-gradient(transparent, #f7f7f5);
    }

    .hero p { color: #d3d3d5; }

    .btn-outline {
      border-color: rgba(255,255,255,.28);
      color: #fff;
      background: rgba(0,0,0,.12);
    }

/* Mobile navigation */
@media (max-width: 850px) {
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(11,11,12,.98);
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .site-nav.is-open a {
    padding: 12px 0;
  }

  header .container.nav {
    position: relative;
  }
}
