/* ===== GLOBAL RESET ===== */
html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* This prevents browser rendering seams */
  border: none;
  outline: none;
}


/* Ensure all elements respect box-sizing */
*, *::before, *::after {
  box-sizing: inherit;
}




/* ===== HERO SECTION ===== */
.fight-hero {
  position: relative;
  padding: 12rem 2rem 8rem;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 🔥 Background boxing ring image */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url('https://media.istockphoto.com/id/2160594886/photo/two-male-boxers-in-high-stakes-match-exchanging-powerful-blows-under-intense-lighting-raw.jpg?s=612x612&w=0&k=20&c=jTUGGDE5NX-23aZTnhmjpEp_8WApdLHtkdcxtoVfiso=')
    center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.fight-heading {
  font-size: 3.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffd700, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.fight-subtext {
  max-width: 900px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.7;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}



/* Scroll Down Arrow */
.scroll-down-arrow {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down-arrow span {
  width: 22px;
  height: 22px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  animation: arrowBlink 1.6s infinite;
  opacity: 0.8;
}

@keyframes arrowBlink {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.6;
  }
}

/* ===== FIGHT CARDS ===== */
.fight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 5rem 2rem; /* reduced side padding */
  background: #0b0b0b;
  justify-items: center; /* centers the cards */
  text-align: left;
}

.fight-card {
  background: linear-gradient(145deg, rgba(30,30,30,1), rgba(0,0,0,1));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.fight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255,0,128,0.5);
}
.fight-card h2 {
  background: linear-gradient(90deg, #ffd700, #ff2400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.fight-card h2 {
  background: linear-gradient(90deg, #ffd700, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fight-card:hover {
  box-shadow: 0 0 25px rgba(255, 60, 60, 0.5);
}

.fight-card ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}
.fight-card ul li {
  color: #ccc;
  margin: 0.3rem 0;
}
.fight-card {
  max-width: 360px;
  width: 100%;
}

.btn-enroll {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #ffd700, #ff2400);
  border: none;
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.btn-enroll:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .fight-hero {
    padding: 8rem 1.5rem 6rem;
  }

  .fight-cards {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .cta-fight {
    padding: 5rem 1.5rem;
  }
}


/* ===== CTA SECTION ===== */
.cta-fight {
  position: relative;
  text-align: center;
  padding: 8rem 2rem;
  color: #fff;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url('https://media.istockphoto.com/id/478219146/photo/boxing-excitement.webp?a=1&b=1&s=612x612&w=0&k=20&c=YaJwwstWP9dVFKwb_ZQ3VwqAEgbVZ2VcGEq3HXhddPk=')
    center center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-heading span {
  background: linear-gradient(90deg, #ffd700, #ff2400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: #ff2400;
}

.cta-text {
  color: #d6d6d6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cta-subtext {
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Primary button - gold/orange gradient */
.btn-primary {
  background: linear-gradient(90deg, #ffd700, #ff2400);
  color: #000;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.7);
}

/* Outline button - gold border */
.btn-outline {
  border: 2px solid #ff7a00;
  color: #ff2400;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(90deg, #ffd700, #ff2400);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.6);
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: #000;
  z-index: -1;
}
/* ===== MOBILE FIXES FOR HEADER AND CARD ALIGNMENT ===== */
@media (max-width: 768px) {

  /* Match header style with Services page */
  .navbar {
    background: #000;
    backdrop-filter: none;
    border-bottom: none;
  }

  .nav-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    gap: 0.3rem;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.3rem;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .nav-text-logo {
    height: 22px;
    margin-top: 4px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .nav-links a.active::after {
    background: linear-gradient(90deg, #ffd700, #ff2400);
    height: 3px;
    border-radius: 3px;
  }

  .icons {
    margin-top: 0.6rem;
    justify-content: center;
  }

  /* Center fight cards properly */
  .fight-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.2rem;
    gap: 1.8rem;
  }

  .fight-card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Adjust hero spacing for mobile */
  .fight-hero {
    padding: 9rem 1.2rem 6rem;
  }
}


