/* ==========================================================================
   LupteBSG - Modern Athletic Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0A0D14;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(26, 35, 56, 0.85);
  --bg-header: rgba(10, 13, 20, 0.85);
  
  --primary-gold: #FFB800;
  --primary-gold-hover: #E5A400;
  --accent-red: #E63946;
  --accent-blue: #1D63FF;
  --accent-blue-glow: rgba(29, 99, 255, 0.35);
  
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(255, 184, 0, 0.3);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & Glassmorphism */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --gold-glow: 0 0 25px rgba(255, 184, 0, 0.25);
  --blue-glow: 0 0 25px rgba(29, 99, 255, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--primary-gold);
}

.text-blue {
  color: var(--accent-blue);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--glass-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(8, 10, 16, 0.95);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--gold-glow);
  transition: var(--transition);
}

.brand-link:hover .site-logo {
  transform: scale(1.08) rotate(4deg);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.45rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.brand-text span {
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #D49B00 100%);
  color: #0A0D14;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
  color: #000;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Page Layout */
main {
  margin-top: 80px;
  flex: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-text + .about-text {
  margin-bottom: 1.75rem;
}

.about-mission-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-mission-card {
  flex: 1 1 170px;
  border-left: 3px solid var(--primary-gold);
  padding-left: 1rem;
}

.about-mission-card-blue {
  border-left-color: var(--accent-blue);
}

.about-mission-title {
  font-size: 1.1rem;
  color: #FFF;
}

.about-mission-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-image-wrap {
  text-align: center;
}

.about-emblem-card {
  padding: 2.5rem;
  border-color: var(--border-gold);
}

.about-emblem-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.about-emblem-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-emblem-slogan {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-emblem-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.about-hero-content .section-title {
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.about-hero-content .section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 580px;
  line-height: 1.7;
  margin: 0 auto 2.2rem auto;
  font-weight: 600;
}

/* About page video hero */
.about-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  max-width: none;
  min-height: 88vh;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(8, 12, 20, 0.62), rgba(8, 12, 20, 0.78));
  padding: 4rem 1.5rem;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(215, 38, 56, 0.22), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(29, 99, 255, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255, 184, 0, 0.12) 0%, transparent 50%),
    linear-gradient(rgba(8, 12, 20, 0.46), rgba(8, 12, 20, 0.58));
  pointer-events: none;
}

.about-hero-video {
  position: absolute;
  z-index: -1;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: grayscale(0.08) saturate(1.12) contrast(1.08) brightness(0.88);
}

.about-hero .hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-hero .hero-text {
  max-width: 680px;
}

.about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.about-hero .hero-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.about-hero .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
  line-height: 1.7;
}

.about-hero .hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-hero .hero-image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero .hero-logo-large {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  box-shadow: 0 0 50px rgba(255, 184, 0, 0.35), 0 0 100px rgba(29, 99, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.about-hero .btn {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  transition: 0.3s ease;
}

.about-hero .btn:hover {
  transform: translateY(-3px);
}

.about-hero .btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #E5A400 100%);
  color: #0A0D14;
  box-shadow: var(--gold-glow);
}

.about-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: var(--glass-border);
}

.about-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-hero .text-gold {
  color: var(--primary-gold);
}

.about-hero .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .about-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero .hero-buttons {
    justify-content: center;
  }

  .about-hero .hero-title {
    font-size: 2.75rem;
  }

  .about-hero .hero-logo-large {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 78vh;
    padding: 4.5rem 1rem 2.5rem;
  }

  .about-hero .hero-container {
    gap: 2rem;
  }

  .about-hero .hero-title {
    font-size: 2.4rem !important;
    line-height: 1.04;
  }

  .about-hero .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }

  .about-hero .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero .hero-logo-large {
    width: 210px;
    height: 210px;
  }
}

/* Collapsible club history */
.history-section {
  text-align: center;
  padding-top: 2rem;
}

.history-section .section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.history-content {
  max-width: 920px;
  max-height: 10.5rem;
  margin: 0 auto;
  overflow: hidden;
  color: var(--text-muted);
  text-align: justify;
  line-height: 1.85;
  transition: max-height 0.45s ease;
  position: relative;
}

.history-content::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.history-content.is-expanded {
  max-height: none;
}

.history-content.is-expanded::after {
  opacity: 0;
}

.history-content p {
  margin: 0 0 1.25rem;
}

.history-content p:last-child {
  margin-bottom: 0;
}

.history-toggle {
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #E5A400 100%);
  color: #0A0D14;
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: calc(var(--radius-md) + 4px);
  overflow: hidden;
  background: var(--bg-card);
  border: var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(1.02) contrast(1.02);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

/* Specific adjustments for the awards image to avoid overlapping lightbox/gallery navigation */
.gallery-img.awards-img {
  object-fit: contain;
  background: #080A10;
  padding: 0.5rem;
}

/* Disable hover zoom for awards image so it doesn't cover navigation controls */
.gallery-card:hover .gallery-img.awards-img {
  transform: none;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.08) 0%, rgba(10, 13, 20, 0.58) 55%, rgba(10, 13, 20, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0.95;
  transition: var(--transition);
}

.gallery-badge {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 184, 0, 0.2);
  color: var(--primary-gold);
  border: 1px solid var(--border-gold);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
}

.gallery-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(10, 13, 20, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox.active .lightbox-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  margin: 0 auto;
  transform: scale(0.98);
  opacity: 0.92;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

/* Ensure navigation buttons are above the image */
.lightbox-img { position: relative; z-index: 10; }
.lightbox-nav, .lightbox-close { z-index: 30; }

.lightbox-img.is-entering {
  transform: scale(1);
  opacity: 1;
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFF;
}

.lightbox-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.lightbox-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-index {
  color: #FFF;
}

.lightbox-autoplay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-autoplay.active,
.lightbox-autoplay:hover {
  background: linear-gradient(135deg, var(--primary-gold), #E5A400);
  color: #0A0D14;
  border-color: transparent;
}

.lightbox-progress-track {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  margin-top: 0.85rem;
}

.lightbox-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold), #F59E0B);
  border-radius: inherit;
  transition: width 0.15s linear;
}

.lightbox-preview-strip {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.lightbox-preview-strip::-webkit-scrollbar {
  display: none;
}

.lightbox-preview-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
  flex: 0 0 auto;
}

.lightbox-preview-thumb.active,
.lightbox-preview-thumb:hover {
  opacity: 1;
  border-color: var(--primary-gold);
  transform: translateY(-2px) scale(1.05);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary-gold);
  color: #0A0D14;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: #0A0D14;
  background: var(--primary-gold);
  border-color: transparent;
}

/* Footer Section */
.footer {
  background: #06080E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-brand-title span {
  color: var(--primary-gold);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item i {
  color: var(--primary-gold);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-gold);
  color: #0A0D14;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    height: auto;
    max-height: calc(100vh - 94px);
    background: rgba(10, 13, 20, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 1.5rem;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border: var(--glass-border);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-mission-grid {
    flex-direction: column;
  }

  .about-emblem-card {
    padding: 1.75rem;
  }

  .about-emblem-img {
    width: 160px;
    height: 160px;
  }

  .about-hero {
    height: auto;
    min-height: auto;
    padding-top: 2rem !important;
  }

  .about-hero-content {
    padding: 1.75rem 1rem;
  }

  .about-hero-video {
    min-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 1rem 2.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-buttons .button {
    width: 100%;
    justify-content: center;
  }

  .hero-logo-large {
    width: min(220px, 58vw);
    height: min(220px, 58vw);
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .nav-container {
    padding: 0.8rem 1rem;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .site-logo {
    width: 42px;
    height: 42px;
  }

  main {
    margin-top: 72px;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 2.25rem;
  }

  .hero .hero-text {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 0.9rem;
    font-size: 0.72rem;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
  }

  .hero-buttons .btn {
    min-height: 48px;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    font-weight: 800;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-img-wrapper {
    height: 220px;
  }

  .gallery-filters {
    gap: 0.75rem;
  }

  .gallery-filter-btn {
    width: 100%;
    text-align: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 74vh;
    padding: 4rem 1rem 2.5rem;
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(29, 99, 255, 0.25), rgba(255, 184, 0, 0.18));
    filter: blur(2px);
    transform: rotate(18deg);
    opacity: 0.9;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 2.35rem) !important;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-logo-large {
    width: min(220px, 70vw);
    height: min(220px, 70vw);
  }

  .nav-link {
    font-size: 0.95rem;
    width: 100%;
    padding: 0.45rem 0.15rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    border-radius: 999px;
  }

  .glass-card {
    padding: 1.35rem;
  }

  .lightbox-content {
    padding: 0 1rem;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 420px) {
  .lightbox-content {
    padding: 0.9rem;
  }

  .lightbox-panel {
    justify-content: center;
  }

  .lightbox-autoplay {
    width: 100%;
  }

  .nav-menu {
    padding: 1.5rem 1rem;
  }

  .brand-link {
    gap: 0.55rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 0.9rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-container {
    gap: 2rem;
  }

  .footer-brand-title {
    font-size: 1.35rem;
  }

  .footer-contact-item,
  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}


.cookie-banner{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);max-width:980px;width:calc(100% - 32px);background:rgba(20,20,28,.92);backdrop-filter:blur(10px);color:#fff;border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:20px;display:none;z-index:9999;box-shadow:0 12px 40px rgba(0,0,0,.35);animation:cookieUp .5s ease}
.cookie-banner.show{display:flex;justify-content:space-between;gap:20px;align-items:center}.cookie-actions{display:flex;gap:14px;align-items:center}.cookie-btn{background:#c62828;color:#fff;border:none;padding:12px 22px;border-radius:10px;cursor:pointer;font-weight:700}.cookie-btn:hover{filter:brightness(1.1)}.cookie-link{color:#ffd54f;text-decoration:none;font-weight:600}@keyframes cookieUp{from{opacity:0;transform:translate(-50%,40px)}to{opacity:1;transform:translate(-50%,0)}}@media(max-width:768px){.cookie-banner.show{flex-direction:column;align-items:flex-start}}

.hero{position:relative;min-height:88vh;display:flex;align-items:center;padding:4rem 1.5rem;background:linear-gradient(rgba(8,12,20,.62),rgba(8,12,20,.78)),url("assets/images/wrestling.png") center center/cover no-repeat !important;overflow:hidden;}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 75% 20%,rgba(215,38,56,.22),transparent 45%);pointer-events:none;}
.hero>*{position:relative;z-index:2;}
.hero-container{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1.2fr 1fr;gap:3.5rem;align-items:center;width:100%;}
.hero-text{max-width:680px;}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;padding:0.4rem 1rem;border-radius:50px;background:rgba(255,184,0,0.1);border:1px solid var(--border-gold);color:var(--primary-gold);font-weight:700;font-size:0.85rem;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:1.5rem;}
.hero-title{font-size:3.6rem;line-height:1.1;margin-bottom:1.25rem;}
.hero-subtitle{font-size:1.15rem;color:var(--text-muted);margin-bottom:2.2rem;max-width:580px;line-height:1.7;}
.hero-buttons{display:flex;gap:1.25rem;flex-wrap:wrap;}
.hero-image-box{position:relative;display:flex;justify-content:center;align-items:center;}
.hero-logo-large{width:340px;height:340px;border-radius:50%;object-fit:cover;border:4px solid var(--primary-gold);box-shadow:0 0 50px rgba(255,184,0,0.35),0 0 100px rgba(29,99,255,0.2);animation:float 6s ease-in-out infinite;}
@keyframes float{0%,100%{transform:translateY(0px) rotate(0deg);}50%{transform:translateY(-12px) rotate(2deg);} }
.hero .btn,.hero .button{ border-radius:999px; padding:.9rem 1.6rem; transition:.3s ease; }
.hero .btn:hover,.hero .button:hover{ transform:translateY(-3px); }
header, .navbar{ transition:background .3s ease, box-shadow .3s ease; }
header.scrolled,.navbar.scrolled{ background:rgba(13,13,13,.92)!important; backdrop-filter:blur(12px); box-shadow:0 8px 30px rgba(0,0,0,.25); }
.scroll-indicator{ position:absolute;left:50%;bottom:20px;transform:translateX(-50%); color:#fff;opacity:.8;animation:bob 1.8s infinite; }
@media (max-width: 992px) {.hero-container{grid-template-columns:1fr;text-align:center;}.hero-subtitle{margin-left:auto;margin-right:auto;}.hero-buttons{justify-content:center;}.hero-title{font-size:2.75rem;}.hero-logo-large{width:250px;height:250px;}}
@media (max-width: 576px) {.hero{min-height:78vh;padding:4.5rem 1rem 2.5rem;}.hero-container{gap:2rem;}.hero-title{font-size:2.4rem !important;line-height:1.04;}.hero-badge{margin-bottom:1rem;font-size:0.78rem;}.hero-subtitle{font-size:1rem;margin-bottom:1.6rem;}.hero-buttons{flex-direction:column;align-items:stretch;}.hero-logo-large{width:210px;height:210px;}}
@keyframes bob{
0%,100%{transform:translateX(-50%) translateY(0)}
50%{transform:translateX(-50%) translateY(8px)}
}
