/* Color Palette */
:root {
  --gold: #d4af37;
  --black: #000;
  --dark: #000;
  --white: #fff;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.site-header {
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 1100;
}
.site-header .logo {
  max-height: 100px;  /* bump this number to taste */
  width: auto;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--gold);
}

/* Hamburger Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1200;
}
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  position: relative;
  transition: 0.3s;
}
.nav-toggle .hamburger::before { top: -8px; }
.nav-toggle .hamburger::after  { top:  8px; }

/* ─────────────────────────────────────
   Contact Page Styles
───────────────────────────────────── */

/* Page-specific body */
body.contact-page {
  background: var(--black);
  color: var(--white);
}

/* Hero section */
.contact-hero {
  text-align: center;
  padding: 4rem 1rem;
  border-bottom: 2px solid var(--gold);
}
.contact-hero h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-hero p {
  font-size: 1.25rem;
  color: #ccc;
}

/* Contact info + map wrapper */
.contact-info-map {
  display: flex;
  gap: 2rem;
  padding: 3rem 1rem;
  flex-wrap: wrap;
}
.contact-info-block,
.map-block {
  flex: 1;
  min-width: 300px;
}

/* Contact Info Block */
.contact-info-block h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: left;
}
.contact-info-block .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-block .contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ddd;
}
.contact-info-block .contact-info li i {
  color: var(--gold);
  width: 1.2rem;
  text-align: center;
}

/* Map Block */
.map-block iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 2px solid var(--gold);
  border-radius: 8px;
}

/* Contact Form Block */
.contact-form-block {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.contact-form-block h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: grid;
  gap: 1.5rem;
}
.contact-form .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #eee;
}
.contact-form label span {
  color: #f55;
  font-size: 0.85rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #555;
  border-radius: 8px;
  background: transparent;
  color: #eee;
  font-size: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn-gold {
  justify-self: start;
  padding: 0.75rem 2rem;
}
/* Sponsorship Tiers – Horizontal Panels */
.tiers-section {
  padding: 3rem 1rem;
  background: #111;
}
.tiers-section h2 {
  text-align: center;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Grid for three panels */
.tiers-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Base card style */
.tier-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 320px;
  background: var(--dark);
  border: 3px solid transparent;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.tier-card p {
  color: #ccc;
  margin-bottom: 1rem;
}

/* Bronze */
.tiers-grid .tier-card:nth-child(1) {
  border-color: #cd7f32;
}
.tiers-grid .tier-card:nth-child(1) h3 {
  color: #cd7f32;
}

/* Silver (glowing) */
.tiers-grid .tier-card:nth-child(2) {
  border-color: #c0c0c0;
  box-shadow: 0 0 12px rgba(192, 192, 192, 0.6);
}
.tiers-grid .tier-card:nth-child(2) h3 {
  color: #c0c0c0;
}

/* Gold */
.tiers-grid .tier-card:nth-child(3) {
  border-color: var(--gold);
}
.tiers-grid .tier-card:nth-child(3) h3 {
  color: var(--gold);
}

/* Hover effect */
.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

/* Button alignment */
.tier-card .btn {
  margin-top: 1rem;
}
/* Tier background images */
.tiers-grid .tier-card:nth-child(1) {
  background: var(--dark) url('pics/silver.png') center/cover no-repeat;
}

.tiers-grid .tier-card:nth-child(2) {
  background: var(--dark) url('pics/bronze\ \(1\).png') center/cover no-repeat;
}

.tiers-grid .tier-card:nth-child(3) {
  background: var(--dark) url('pics/gold.png') center/cover no-repeat;
}

/* Optional: add a semi-transparent overlay so text stays legible */
.tiers-grid .tier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
}
.tiers-grid .tier-card > * {
  position: relative; /* make sure text and button sit above the overlay */
}

/* 1. Full-screen Hero */
.hero {
  position: relative;
  background: url('pics/hero-bg.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  overflow: hidden;
}
.hero::after {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}
.hero h1, .hero p, .hero .btn {
  position: relative;
  z-index: 1;
}
.hero .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
}

/* 2. About Us Snapshot */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.about-text h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-text p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* 4. Upcoming Events Preview */
.events-teaser {
  padding: 3rem 0;
  text-align: center;
}
.events-teaser h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.event-card {
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card h3 {
  color: #fff;
  font-size: 1.25rem;
}
.event-card p {
  color: #ccc;
}
.buy-btn {
  margin-top: auto;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.hero {
  position: relative;
  background: url('pics/hero.JPEG') center/cover no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  overflow: hidden;
}
/* center the Learn More button in the About block */
.about-text .btn {
  display: inline-block;
  margin: 1.5rem auto 0; /* top margin, then auto-center horizontally */
}

/* Move that left-side fighter into view on small screens */
@media (max-width: 768px) {
  .hero {
    /* experiment with the % here: 
       50% = center of image, lower = shift image right, higher = shift left */
    background-position: 30% center;  
  }
}

/* Responsive */
@media (max-width: 900px) {
  .tiers-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .contact-info-map {
    flex-direction: column;
  }
  .contact-form .two-col {
    grid-template-columns: 1fr;
  }
}
  .about-text .btn {
    display: block;
    margin: 1.5rem auto 0;
  }

/* Desktop Nav */
@media (min-width: 601px) {
  .nav-toggle { display: none; }
  .site-nav ul { display: flex !important; }
}

/* Mobile Nav Overlay */
@media (max-width: 600px) {
  .nav-toggle { display: block; }
  .site-nav ul { display: none; }
  body.nav-open .site-nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark);
    padding-top: 1rem;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    z-index: 1100;
  }
    body.nav-open .site-nav ul li a {

    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--dark);
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.1s;
  }
  body.nav-open .site-nav ul li a:active {
    transform: scale(0.97);
  }
  body.nav-open { overflow: hidden; }
    .nav-toggle {
    position: relative;
    font-size: 1.5rem;
    color: var(--light);
  }
  /* hide bars when open */
  body.nav-open .nav-toggle span {
    opacity: 0;
  }
  /* show a big “X” */
  body.nav-open .nav-toggle::after {
    content: 'X';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
}

/* Roster Title */
.roster-page h1 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* Roster Grid */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

/* Fighter Card */
.fighter-card {
  position: relative;
  background-color: var(--dark);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.2s ease-in-out;
}
.fighter-card:hover { transform: translateY(-5px); }
.fighter-card > * { position: relative; z-index: 1; }

/* Fighter Info Box */
.fighter-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fighter-text { flex: 1; margin-right: 1rem; }
.fighter-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin: 0;
}
.fighter-name {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.fighter-text p { color: #ccc; margin: 0.25rem 0; }
.fighter-text span { color: var(--gold); font-weight: bold; }

/* Pro Section Override */
.roster-section:nth-of-type(1) .roster-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 340px;
  gap: 2rem;
  justify-content: center;
}

/* Upcoming Events Styles (scoped) */
body.upcoming-page .events-section {
  padding: 2rem 1rem;
}
body.upcoming-page .events-section h2 {
  text-align: center;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.event-card {
  background-color: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-img { width: 100%; height: auto; display: block; }
.event-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-name { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.5rem; }
.event-date { color: #ccc; }

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2rem;
  max-width: 90%;
  width: 400px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transform-origin: center center;
}
.modal-close {
  position: absolute;
  top: 0.5rem; right: 0.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.modal-name {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.modal-date {
  color: #ccc;
  margin-bottom: 1rem;
}
.modal-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}
/* prevent background scroll when modal is open */
body.no-scroll {
  overflow: hidden;
}

.shrink-wrapper {
  transform: scale(0.6);
  transform-origin: top center;
}

.event-card {
  /* make each card a consistent aspect ratio, e.g. 3:4 (width:height) */
  display: flex;
  flex-direction: column;
}

/* target the img inside it */
.event-card .event-img {
  width: 100%;
  height: 100%;        /* fill the aspect-ratio box */
  object-fit: cover;   /* crop/scale to cover fully */
  flex-shrink: 0;
}

/* Reserve the poster’s real aspect‑ratio and cap the width */
.poster-wrapper {
  width: 100%;               /* let it fill its grid column */
  overflow: hidden;
  margin: 0 auto;            /* center if you like */
}

.event-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200/1500;
  display: block;
}



/* Theme‑matched Buttons & Card Hover */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.btn:hover,
.btn:focus {
  background: var(--white);
  color: var(--dark);
}

/* Buy‑Tickets buttons full width inside cards */
.buy-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
}

/* Card hover effect to match your portfolio vibe */
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}
/* Category Toggle */
.category-toggle {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.category-toggle .toggle-btn {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.category-toggle .toggle-btn.active {
  background: #fff;
  color: #000;
}

/* Events Section */
/* only for the Past Events page */
.past-events-page .events-section { display: none; }
.past-events-page .events-section.active { display: block; }


/* Event Card */
.event-card {
  margin: 2rem auto;
  max-width: 1200px;
}
.event-card .event-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.event-card .event-details {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}
.carousel-track img {
  width: calc(100% / 2); /* two visible */
  flex-shrink: 0;
  object-fit: cover;
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  flex-direction: column;
  overflow-y: auto; /* <-- allows scrolling */
  z-index: 9999;
}

.lightbox.open { display: flex; }

.lightbox-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  align-items: center;
}

.lightbox-content img {
  max-width: 90vw;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.lightbox-close {
  position: sticky;
  top: 1rem;
  right: 1rem;
  align-self: flex-end;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.event-back {
  background: none;
  border: none;
  color: #FFD700; /* gold */
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.event-back:hover {
  color: #fff; /* white on hover */
}


/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
}
.carousel-btn.prev-btn {
  left: 1rem;
}
.carousel-btn.next-btn {
  right: 1rem;
}
/* Challenger Registration Page Styles */
body.challengers-page {
  background: #111;            /* dark background */
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
}

.challenger-form-page {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.challenger-form-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

/* General form-group */
.challenger-form .form-group {
  margin-bottom: 1.5rem;
}

/* Two‑column & three‑column rows */
.challenger-form .two-col,
.challenger-form .three-col {
  display: grid;
  grid-gap: 1rem;
}
.challenger-form .two-col { grid-template-columns: 1fr 1fr; }
.challenger-form .three-col { grid-template-columns: 1fr 1fr 1fr; }

/* Checkbox and radio groups */
.challenger-form .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.challenger-form input[type="checkbox"] {
  /* undo the text‑input sizing */
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0.5rem 0 0;
  border: none;
  box-shadow: none;
  accent-color: var(--gold);
  transform: scale(1.2); /* bump the checkbox a bit */
}

.challenger-form .checkbox-group label {
  display: flex;
  align-items: center;
  margin: 0;            /* spacing handled by gap */
  font-size: 1rem;
  color: #eee;
}
.challenger-form .checkbox-group input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: var(--gold);
}

/* Fieldsets & legends */
.challenger-form fieldset {
  border: 2px solid #444;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.challenger-form legend {
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Labels & inputs */
.challenger-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.challenger-form label span {
  color: #f55;
  font-size: 0.9rem;
}
.challenger-form input,
.challenger-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #555;
  border-radius: 999px;
  background: transparent;
  color: #eee;
  font-size: 1rem;
}

/* Glowing gold bars on inputs */
.challenger-form input,
.challenger-form select {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.challenger-form input:focus,
.challenger-form select:focus {
  outline: none;  /* kill the default browser glow */
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* Date picker icon tweak */
.challenger-form input[type="date"] {
  padding-right: 2.5rem;
}

/* Submit button */
.challenger-form .btn-gold {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: #111;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 999px;
  text-align: center;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.challenger-form .btn-gold:hover {
  background: #e6b800;
}

/* Extra breathing room under the intro text */
.challenger-form-page .intro-text {
  margin-bottom: 2.5rem;  /* adjust as you like */
}

/* ─────────────────────────────────────
   Footer: logo | socials | contact
───────────────────────────────────── */
.site-footer {
  background: #000;                     /* true black */
  border-top: 4px solid var(--gold);    /* gold line above */
  padding: 2rem 1rem;
  color: #ccc;
}


/* grid container: 3 columns */
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}


/* 1) Logo on left */
.footer-logo img {
  max-height: 100px;
  width: auto;
}

/* 2) Socials in center */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.social-links .fa-instagram {
  color: #C13584;
  text-shadow: 0 0 6px rgba(193, 53, 132, 0.6);
}
.social-links .fa-facebook-f {
  color: #1877F2;
  text-shadow: 0 0 6px rgba(24, 119, 242, 0.6);
}
.social-links .fa-youtube {
  color: #FF0000;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}
.social-links a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 12px currentColor;
}

/* 3) Contact info on right */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-self: end;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-info i {
  color: var(--gold);
  width: 1.2rem;
  text-align: center;
}

/* bottom copyright */
.footer-copy {
  text-align: center;
  color: #555;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

/* make contact links inherit footer style */
.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info a:hover {
  color: var(--gold);
  text-decoration: underline;
}


/* mobile stack */
@media (max-width: 600px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info {
    justify-self: center;
  }
}



/* Mobile Adjustments (Roster & Events) */
@media (max-width: 600px) {
  .roster-grid,
  .roster-section:nth-of-type(1) .roster-grid {
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    gap: 1rem;
  }
  .fighter-info-box { flex-direction: column; align-items: flex-start; }
  .fighter-text { margin-right: 0; }
  .fighter-img { margin-top: 1rem; width: 100%; height: auto; }
  .event-img { width: 100%; }
  .carousel-track img {
    width: calc(100% / 2);
  }
  .challenger-form .two-col,
  .challenger-form .three-col {
    grid-template-columns: 1fr;
  }
}
