/* ==========================================================================
   YAROS VOLLEYBALL CLUB - MAIN STYLESHEET
   Refined to strictly match reference design (media_1789940276153.png)
   ========================================================================== */

:root {
  --navy-dark: #071726;
  --navy-mid: #0B1D2E;
  --navy-light: #132738;
  --yellow-primary: #FFD500;
  --yellow-hover: #E5C000;
  --cyan-accent: #00A3E0;
  --ink-dark: #102133;
  --text-muted: #607080;
  --bg-light: #F4F6F8;
  --bg-card: #FFFFFF;
  --border-light: #E1E6EB;
  --font-display: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink-dark);
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

/* Base Typography & UI Components */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #788896;
  margin-bottom: 6px;
}

.section-eyebrow-light {
  color: #8CA0B0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0;
}

.section-title-white {
  color: #FFFFFF;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: var(--yellow-hover);
}

.section-link-cyan {
  color: var(--cyan-accent);
}

.section-link-cyan:hover {
  color: #33C2FF;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.button-yellow {
  background-color: var(--yellow-primary);
  color: var(--navy-dark);
}

.button-yellow:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-1px);
}

.button-video {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
}

.button-video:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

.play-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder Frames System */
.image-frame {
  position: relative;
  overflow: hidden;
  background-color: #D3DFE5;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(40px, 8vw, 120px);
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(7, 23, 38, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--yellow-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-btn {
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: color 0.2s ease;
}

.search-btn:hover {
  color: var(--yellow-hover);
}

.header-cta {
  padding: 8px 18px;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  color: var(--navy-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 560px;
  background-color: var(--navy-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 60px clamp(40px, 8vw, 120px);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(105deg, rgba(7, 23, 38, 0.92) 0%, rgba(11, 29, 46, 0.78) 45%, rgba(19, 39, 56, 0.42) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 163, 224, 0.15) 0%, transparent 60%);
}

/* Decorative Hero Background Volleyball Players Overlay Pattern */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 58%;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(255, 213, 0, 0.08) 0%, transparent 70%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.05) 45%, rgba(0, 163, 224, 0.1) 60%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #8AA0B0;
  margin-bottom: 16px;
}

.hero-eyebrow .dot {
  color: var(--cyan-accent);
  margin: 0 4px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.highlight-yellow {
  color: var(--yellow-primary);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #D2DCE6;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-side-nav {
  position: absolute;
  right: clamp(40px, 8vw, 120px);
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
}

.hero-side-nav span {
  cursor: pointer;
  color: #FFFFFF;
  font-weight: 700;
  transition: color 0.2s ease;
}

.hero-side-nav span:hover {
  color: var(--yellow-primary);
}

.hero-pagination {
  position: absolute;
  right: clamp(40px, 8vw, 120px);
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pagination-line {
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.pagination-progress {
  width: 33.33%;
  height: 100%;
  background-color: var(--yellow-primary);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.4s ease;
}

.pagination-numbers {
  display: flex;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: #8AA0B0;
}

.pagination-numbers span.active {
  color: #FFFFFF;
  font-weight: 700;
}

/* ==========================================================================
   Values Bar
   ========================================================================== */
.values-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-item:last-child {
  border-right: none;
}

.value-icon {
  color: var(--navy-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.value-item p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Base & News Section
   ========================================================================== */
.section {
  padding: 56px clamp(40px, 8vw, 120px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 16px;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-frame {
  height: 290px;
  margin-bottom: 12px;
  position: relative;
}

.frame-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(7, 23, 38, 0.85);
  color: var(--yellow-primary);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}

/* Realistic SVG CSS pattern backgrounds for news picture frames */
.news-img-1 {
  background: linear-gradient(145deg, #102B40 0%, #2A5470 50%, #E3A35C 100%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  background-blend-mode: overlay;
}

.news-img-2 {
  background: linear-gradient(135deg, #71A8C4 0%, #C96652 50%, #1B5B69 100%);
}

.news-img-3 {
  background: linear-gradient(140deg, #D4AF8B 0%, #1C3E52 55%, #0B1D2E 100%);
}

.news-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: #8AA0B0;
  margin-bottom: 4px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.news-excerpt {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-readmore {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;

}

.news-readmore:hover {
  color: var(--yellow-hover);
}

/* Join Yaros Card */
.join-yaros-banner {
  background-color: var(--navy-dark);
  background-image: linear-gradient(145deg, #071726 0%, #0F2A40 60%, #173852 100%);
  border-radius: 2px;
  padding: 32px 24px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 12px;
}

.banner-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #C0D0DE;
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 180px;
}

.banner-btn {
  align-self: flex-start;
  padding: 9px 18px;
  font-size: 0.7rem;
}

.banner-volleyball-icon {
  position: absolute;
  right: -15px;
  bottom: -15px;
  pointer-events: none;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-light);
  padding: 64px clamp(40px, 8vw, 120px);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-copy {
  max-width: 440px;
}

.about-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.about-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-btn {
  padding: 10px 22px;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 20px;
  align-items: center;
}

.player-main-frame {
  height: 560px;
  background: linear-gradient(160deg, #132738 0%, #0A1927 50%, #1A384D 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  box-shadow: 0 10px 30px rgba(7, 23, 38, 0.15);
}

.player-graphic {
  position: relative;
  width: 160px;
  height: 240px;
  background: linear-gradient(180deg, #FFFFFF 0%, #00A3E0 40%, #FFD500 70%, #102133 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jersey-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.player-volleyball {
  position: absolute;
  right: -25px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFD500 0%, #00A3E0 70%, #071726 100%);
  border: 2px solid #FFFFFF;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--navy-dark);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.pillar-icon {
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Club Shop / Merchandise Section
   ========================================================================== */
.shop-section {
  background-color: #FFFFFF;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.product-card {
  background-color: var(--bg-light);
  padding: 12px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.product-frame {
  height: 220px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.product-badge-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  opacity: 0.4;
}

.product-home-jersey {
  background: linear-gradient(135deg, #0B1D2E 0%, #FFD500 45%, #00A3E0 100%);
  color: #FFFFFF;
}

.product-away-jersey {
  background: linear-gradient(135deg, #FFFFFF 0%, #00A3E0 50%, #FFD500 100%);
  color: var(--navy-dark);
}

.product-training-shirt {
  background: linear-gradient(135deg, #102133 0%, #1E3A52 100%);
  color: var(--yellow-primary);
}

.product-cap {
  background: linear-gradient(180deg, #132738 0%, #071726 100%);
  color: #FFFFFF;
}

.product-bottle {
  background: linear-gradient(90deg, #EBF3F7 0%, #B8D8E6 50%, #FFFFFF 100%);
  color: var(--navy-dark);
}

.product-bag {
  background: linear-gradient(145deg, #1A2F40 0%, #0A1520 100%);
  color: #FFFFFF;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 6px;
  background-color: #FFFFFF;
  border: 1px solid #B0BEC5;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  margin-top: auto;
}

.add-to-cart-btn:hover {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  border-color: var(--navy-dark);
}

/* ==========================================================================
   Executive Committee & Club Officials
   ========================================================================== */
.officials-section {
  background-color: var(--bg-light);
}

.officials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.official-card {
  background-color: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(7, 23, 38, 0.04);
}

.person-frame {
  height: 290px;
}

.person-frame img {
  object-position: top center !important;
}

.person-1 {
  background: linear-gradient(135deg, #CFDCDA 0%, #8A9897 45%, #152B3A 100%);
}

.person-2 {
  background: linear-gradient(135deg, #243949 0%, #7E6B56 50%, #E6C537 100%);
}

.person-3 {
  background: linear-gradient(135deg, #0C212E 0%, #B88555 45%, #257D85 100%);
}

.person-4 {
  background: linear-gradient(135deg, #B59374 0%, #473831 50%, #DBCBB7 100%);
}

.official-info {
  padding: 12px 14px 16px;
}

.official-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: #788896;
  display: block;
  margin-bottom: 2px;
}

.official-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
}

/* ==========================================================================
   Media / Gallery Section
   ========================================================================== */
.gallery-section {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-frame {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.g-img-1 {
  background: linear-gradient(135deg, #3C8394 0%, #C9A430 50%, #E8CDAF 100%);
}

.g-img-2 {
  background: linear-gradient(135deg, #87A6AC 0%, #CE6C3F 50%, #DBD5C5 100%);
}

.g-img-3 {
  background: linear-gradient(135deg, #103647 0%, #CFB748 50%, #486E62 100%);
}

.g-img-4 {
  background: linear-gradient(135deg, #D4A942 0%, #25616E 50%, #DECCA9 100%);
}

.g-img-5 {
  background: linear-gradient(135deg, #4F4563 0%, #D49353 50%, #0E2633 100%);
}

.gallery-caption {
  width: 100%;
  padding: 8px 10px;
  background: rgba(7, 23, 38, 0.85);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Honours Section
   ========================================================================== */
.honours-section {
  background-color: #FFFFFF;
  padding: 36px clamp(40px, 8vw, 120px);
  border-bottom: 1px solid var(--border-light);
}

.honours-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.honours-header {
  flex-shrink: 0;
}

.honours-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.honour-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trophy-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.honour-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: block;
}

.honour-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  padding: 56px clamp(40px, 8vw, 120px);
}

.partners-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.partners-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.partners-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #B0C4D0;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 380px;
}

.partners-btn {
  padding: 10px 22px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  align-items: center;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.diamond-icon {
  color: var(--yellow-primary);
  font-size: 0.9rem;
}

.circle-dots {
  color: var(--cyan-accent);
}

.botswana-logo small {
  font-size: 0.6rem;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background-color: #090E14;
  color: #A0B0C0;
  padding: 52px clamp(40px, 8vw, 120px) 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.8fr 0.8fr;
  gap: 36px;
  margin-bottom: 36px;
}

.tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  margin-top: 10px;
  color: #8AA0B0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--yellow-primary);
  margin-bottom: 16px;
}

.contact-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--cyan-accent);
  color: #090E14;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #A0B0C0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #708090;
}

.yellow-dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--yellow-primary);
  vertical-align: middle;
  margin-right: 8px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }
  .brand-logo-img {
    height: 57px;
  }
  .nav-links,
  .header-actions {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .menu-toggle {
    display: block;
  }
  .hero-side-nav {
    display: none;
  }
  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-visual {
    grid-template-columns: 1fr;
  }
  .officials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .honours-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .honours-list {
    flex-wrap: wrap;
    gap: 24px;
  }
  .partners-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 20px 20px;
    min-height: 460px;
  }
  .hero-title {
    font-size: 1.55rem;
    letter-spacing: 0.2px;
  }
  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 0.78rem;
  }
  .hero-buttons {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-buttons .button {
    font-size: 0.62rem;
    padding: 9px 12px;
    gap: 5px;
    white-space: nowrap;
  }
  .values-bar {
    padding: 32px 20px;
  }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.1s ease;
}

#preloader img {
  width: 208px;
  height: auto;
  animation: preloaderPulse 2.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

#preloader.preloader-hide {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Scroll-triggered reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-down { transform: translateY(-28px); }
.reveal-up { transform: translateY(28px); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  #preloader,
  #preloader img {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   News Page & National Volleyball League Dashboard Styles
   ========================================================================== */
.news-page-hero {
  padding: 48px clamp(40px, 8vw, 120px);
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.news-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.news-hero-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.news-stories-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.stories-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.updated-notice-badge {
  background-color: var(--navy-dark);
  color: var(--yellow-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(7, 23, 38, 0.25);
  border: 1px solid rgba(255, 213, 0, 0.4);
}

.news-stories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.featured-story-card {
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.story-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,23,38,0.3) 0%, rgba(7,23,38,0.85) 100%);
  border-radius: 4px;
  z-index: 1;
}

.story-header, .story-body {
  position: relative;
  z-index: 2;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-featured-tag {
  background-color: var(--yellow-primary);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.story-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: #D0E0EE;
}

.story-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 8px;
}

.story-body p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #E0ECF5;
  margin-bottom: 12px;
  line-height: 1.4;
}

.story-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--yellow-primary);
  letter-spacing: 0.5px;
}

.stacked-stories-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-story-card {
  height: 172px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.stacked-story-card .story-date,
.stacked-story-card h3,
.stacked-story-card .story-link {
  position: relative;
  z-index: 2;
}

.stacked-story-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 4px 0 8px;
}

/* League Dashboard Section */
.league-dashboard-section {
  background-color: #FFFFFF;
  padding: 56px clamp(40px, 8vw, 120px);
}

.league-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  position: relative;
}

.season-subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.league-watermark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-accent);
}

.watermark-script {
  font-family: cursive, 'Brush Script MT', var(--font-body);
  font-size: 1.5rem;
  color: var(--cyan-accent);
  opacity: 0.6;
}

.summary-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.summary-card {
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.summary-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #EBF4F9;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-icon-circle.trophy-icon {
  background-color: #FFF9D6;
  color: #D9A000;
}

.summary-card-text {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #788896;
}

.summary-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;

}

.summary-value small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.league-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.league-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background-color: #F1F5F9;
  padding: 4px;
  border-radius: 6px;
  width: fit-content;
}

.tab-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.82rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
}

.standings-table th {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 12px 14px;
  text-align: center;
  letter-spacing: 0.5px;
}

.standings-table th.col-team {
  text-align: left;
}

.standings-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #EEF2F6;
  text-align: center;
  color: var(--ink-dark);
}

.standings-table td.team-cell {
  text-align: left;
  font-weight: 600;
}

.standings-table tr.highlight-row {
  background-color: #FFF9D6;
}

.standings-table tr.highlight-row td {
  color: var(--navy-dark);
  font-weight: 800;
}

.league-side-widgets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-card {
  border-radius: 8px;
  padding: 24px;
}

.dark-widget {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #8AA0B0;
  margin-bottom: 20px;
}

.widget-logo {
  height: 28px;
  width: auto;
}

.widget-main-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.big-rank {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.85;
  color: #FFFFFF;
}

.big-rank small {
  font-size: 1.8rem;

}

.rank-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--yellow-primary);
  margin-top: 4px;
}

.widget-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
  margin-bottom: 16px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-box small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #8AA0B0;
}

.widget-footer-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.widget-footer-stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow-primary);

}

.widget-footer-stat span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.light-widget {
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
}

.next-match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.widget-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #788896;
}

.match-league {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.matchup-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.team-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.matchup-team-logo {
  height: 36px;
  width: auto;
  margin-bottom: 6px;
}

.police-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-dark);
}

.team-name small {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.vs-badge {
  background-color: #E2E8F0;
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
}

.match-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.full-width-btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .news-hero-grid {
    grid-template-columns: 1fr;
  }
  .league-dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .affiliations-grid { grid-template-columns: 1fr; }
  .league-dashboard-section { padding: 40px 20px; }
  .league-header-wrapper { flex-direction: column; align-items: flex-start; gap: 8px; }
  #table-mens, #table-womens { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .standings-table { min-width: 480px; }
}
