/* ============================================
   FIRST BELL MMA — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@300;400;500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg-base: #0A0A0A;
  --bg-surface: #111111;
  --bg-elevated: #1A1A1A;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #F2F2F2;
  --text-secondary: #999999;
  --text-tertiary: #5A5A5A;
  --red: #E8283B;
  --red-dim: rgba(232, 40, 59, 0.1);
  --red-glow: rgba(232, 40, 59, 0.15);
  --font-headline: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --container: 1120px;
  --container-narrow: 720px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.nav-brand span {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-socials a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.nav-socials a:hover {
  color: var(--red);
}

/* Hamburger */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile overlay */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.nav-overlay a:hover {
  color: var(--red);
}

.nav-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

.hero {
  padding: 10rem 2rem 7rem;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 40%, rgba(232, 40, 59, 0.03) 0%, transparent 70%);
}

.hero-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 5rem auto 0;
}

/* Buttons */

.btn {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: #d02233;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: #fff;
}

.btn--small {
  font-size: 0.68rem;
  padding: 0.55rem 1.1rem;
}

.btn--surface {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn--surface:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================
   BRAND STRIP
   ============================================ */

.brand-strip {
  background: var(--bg-surface);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-strip-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-strip-sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section {
  padding: 6rem 0;
}

.section--surface {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--text-primary);
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.section-link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

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

.section-link .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.section-link:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
  text-align: center;
  margin: 3rem auto;
  max-width: 500px;
}

.empty-state p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.empty-state-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================
   CONTENT GRID (Interview Cards)
   ============================================ */

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.content-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.content-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.content-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.content-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-card:hover .thumb img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.25rem;
}

.card-org {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.card-body h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   FOLLOW STRIP
   ============================================ */

.follow-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.follow-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.follow-strip-text h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.follow-strip-text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.follow-strip-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ============================================
   EVENT LIST
   ============================================ */

.event-list {
  margin-top: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.event-row:hover {
  background: var(--bg-elevated);
}

.event-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.event-name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.event-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.event-badge {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--red-dim);
  color: var(--red);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.team-initials,
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(232, 40, 59, 0.25);
  margin-bottom: 1.25rem;
}

.team-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--red);
}

.team-avatar {
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT GRID
   ============================================ */

.contact-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.contact-card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.contact-card a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  transition: opacity 0.2s ease;
}

.contact-card a:hover {
  opacity: 0.8;
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--red);
}

/* ============================================
   ABOUT / LEGAL PAGES
   ============================================ */

.page-content {
  padding: 8rem 0 6rem;
}

.page-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.page-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--text-primary);
  margin-bottom: 2.5rem;
}

.page-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

/* Privacy page specifics */

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.privacy-section p,
.privacy-section li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.privacy-section ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-top: 0.5rem;
}

.privacy-section li {
  margin-bottom: 0.3rem;
}

.privacy-updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .nav-links,
  .nav-socials {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 8rem 1.5rem 5rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .follow-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .brand-strip-name {
    font-size: clamp(2rem, 10vw, 4rem);
  }
}
