body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
  color: #000;
}

.burger {
  display: none; /* Hide burger by default */
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/* Full navbar wrapper */
.navbar {
  width: 100%;
  background-color: #0047ab;
  padding: 12px 20px;
  position: relative;
  top: 0;
  z-index: 1000;
}
.navbar .nav-links a { text-transform: uppercase !important; }

/* Navbar inner container */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  max-height: 100px;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  transition: all 0.3s ease;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #ffcc00;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.nav-links a:hover::after {
  width: 100%;
}




.fighters-header {
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Anton', sans-serif;

}

.fighters-header h1 {
  font-size: 68px;
  font-weight: 900;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px auto 30px;
  max-width: 600px;
  padding: 0 10px;
}
.search-bar .icons i {
  cursor: pointer;
}

.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.search-bar .icons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 8px;
}

.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding: 20px;
  justify-items: center; /* centers each item inside its grid cell */
}



.fighter-card {
  width: 100%;
  max-width:220px;
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.fighter-card:hover {
  transform: scale(1.03);
}

.fighter-card img {
  width: 100%;
  height:auto;
  object-fit: cover;
   border-radius: 8px;
}

.fighter-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  
}
.fighter-card {
  text-decoration: none;     /* 👈 Removes underline */
  color: inherit;            /* 👈 Keeps the text color consistent */
}

.fighter-card p {
  font-size: 14px;
  color: #000000;
}
.fighter-card a {
  text-decoration: none;
  color: inherit; /* optional – uses the parent's color */
}


.fighter-hero {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: white;
}

.footer {
  background-color: #0052cc;
  color: white;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 60px;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
  
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.logo-column p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 250px;
}

/* Section Titles (Quick Links, Contact Us, etc.) */
.footer-column h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: 'Anton', sans-serif;
}

/* List Styles */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Social Media Icons */
.footer-column ul li i {
  margin-right: 10px;
}
.breadcrumbs {
  font-size: 14px;
  margin: 10px 20px;
  color: #666;
}

.breadcrumbs a {
  color: #004aad;  /* or gray */
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 6px;
}

.breadcrumbs li::after {
  content: "›";
  margin-left: 6px;
  color: #aaa;
}

.breadcrumbs li:last-child::after {
  content: "";
}


@media (min-width: 768px) {
  .burger {
    display: none !important;
  }
}


@media (max-width: 767px) {
  .navbar-container {
    flex-direction: column;       /* ✅ Stack logo and nav links vertically */
    align-items: center;          /* ✅ Center content horizontally */
  }
  .burger {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-top: 10px;;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #0047ab;
    width: 100%;
    padding: 20px 0;
   border-bottom: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  }
    .nav-links li {
    margin: 10px 0;            /* ✅ add spacing between items */
  }


  .nav-links.show {
    display: flex;
      opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  }
   .overlay h1 {
    font-size: 50px ; /* ← forces override */
    line-height: 1.2 ;
   }
  .overlay p {
    font-size: 16px;
  }
    .search-bar {
    flex-direction: column;
    align-items: center;
  }
   .search-bar input,
  .search-bar select {
    width: 80%;
  }
    .fighter-card {
    width: 90%;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}