/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(13, 0, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; }
.nav-logo img { width: 220px; height: auto; }

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/backgrounds/hero-bg-desktop.jpg');
  background-size: cover;
  background-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13, 0, 16, 0.5) 0%, rgba(13, 0, 16, 0.2) 55%, rgba(13, 0, 16, 0.1) 100%);
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.06) 3px,
    rgba(0, 0, 0, 0.06) 4px
  );
}

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

/* ===== STATS ===== */
.stats {
  background: rgba(17, 0, 22, 1);
  padding: 0 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 52px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}

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

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 110px 48px;
  background: rgba(17, 0, 22, 0.75);
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/backgrounds/about-pattern.jpg');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  opacity: 0.4;
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* ===== DISCIPLINES ===== */
.disciplines {
  padding: 100px 48px;
  background: rgba(17, 0, 22, 0.4);
}

.section-header {
  max-width: 1280px;
  margin: 0 auto 56px;
}

.disc-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ===== SCHEDULE ===== */
.schedule {
  padding: 100px 48px;
  background: rgba(13, 0, 16, 0.75);
  border-top: 1px solid var(--border);
}

.schedule-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 0, 22, 0.75);
  position: relative;
  overflow: hidden;
}

.partners::before,
.partners::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.partners::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.partners::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}

.partners-outer { display: flex; overflow: hidden; }

/* ===== FOOTER ===== */
footer {
  padding: 44px 48px 28px;
  background: rgba(17, 0, 22, 0.75);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-copy {
  max-width: 1280px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== NEON DIVIDER ===== */
.neon-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(204, 0, 255, 0.45) 30%,
    rgba(255, 45, 120, 0.45) 70%,
    transparent 100%
  );
  border: none;
  margin: 0;
}
