/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
}

/* ========== Navbar ========== */
.navbar {
  width: 100%;
  background: #0047ab;
  padding: 12px 20px;
  position: relative;
  z-index: 1000;
}
.navbar-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.logo { max-height: 100px; }

/* links */
.nav-links {
  display: flex; gap: 50px;
  list-style: none; transition: all .3s ease;
}
.navbar .nav-links a { text-transform: uppercase !important; }
.nav-links a {
  color: #fff; text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 1px;
  position: relative; transition: color .3s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0%; height: 2px;
  background: #ffcc00; transition: width .3s ease;
}
.nav-links a:hover { color: #ffcc00; }
.nav-links a:hover::after { width: 100%; }

/* burger (now a button) */
.burger {
  display: none; font-size: 24px; color: #fff; cursor: pointer;
  background: none; border: 0; padding: 6px;
}

/* ========== Hero Slider ========== */
.hero-slider {
  position: relative; height: 100vh; overflow: hidden; text-transform: uppercase;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,0));
  z-index: 1;
}
.overlay {
  position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
  color: #fff; z-index: 2; max-width: 700px;
}
.overlay h1, .overlay h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.1; margin-bottom: 1rem;
}
.overlay p { font-size: 19.8px; font-style: italic; font-weight: 400; }

/* Dots (if your JS injects them) */
.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.slider-dots span {
  width: 10px; height: 10px; background: #fff; opacity: .4; border-radius: 50%; transition: .3s ease;
}
.slider-dots span.active { opacity: 1; }

/* ========== Caution Tape ========== */
.caution-tape-wrapper {
  overflow: hidden; background: #000; border-top: 2px solid red; border-bottom: 2px solid red; padding: 8px 0;
}
.caution-tape { white-space: nowrap; }
.tape-track { display: inline-block; animation: loopBelt 20s linear infinite; }
.tape-track span, .caution-tape span {
  display: inline-block; margin: 0 40px; color: #fff; font-weight: bold; font-size: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
@keyframes loopBelt { from {transform: translateX(0);} to {transform: translateX(-50%);} }

/* ========== Section Title ========== */
.section-title {
  text-align: center; font-size: 70px; font-weight: 900; color: #0052cc;
  margin: 30px 0 20px; font-family: 'Anton', sans-serif;
}

/* ========== Upcoming Events (grid of posters) ========== */
.event-container {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 70px;
}
.event-card {
  width: 250px; height: 380px; border-radius: 20px; overflow: hidden; background: #eee;
  box-shadow: 0 4px 8px rgba(0,0,0,.1); text-align: center; position: relative;
  transition: transform .3s ease; display: block; text-decoration: none; color: inherit;
}
.event-card:hover { transform: scale(1.03); }
.event-card img { width: 100%; height: 100%; object-fit: cover; }
.event-card .button {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #0052cc; color: #fff; font-size: 20px; font-weight: bold; padding: 10px 0; font-style: italic;
}
.see-more {
  background: #0052cc; display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: bold; color: #fff; flex-direction: column; padding: 20px;
}

/* ========== Featured Boxers (fx-) ========== */
.fx-featured { background:#0f0f10; padding:48px 16px 56px; }
.fx-header {
  max-width:1200px; margin:0 auto 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.fx-header h2 {
  margin:0; font-family:'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 44px); line-height:1; color:#fff; letter-spacing:.5px;
}
.fx-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 18px; border-radius:999px; font-weight:800;
  background:#2f54eb; color:#fff; text-decoration:none;
  box-shadow:0 6px 16px rgba(47,84,235,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fx-cta:hover{ transform:translateY(-1px); background:#3b63ff; box-shadow:0 10px 22px rgba(47,84,235,.45); }

.fx-grid{
  max-width:1200px; margin:0 auto;
  display:grid; gap:22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.fx-card{
  display:flex; flex-direction:column;
  border-radius:18px; overflow:hidden; text-decoration:none; color:#101113;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fx-card:hover{ transform: translateY(-4px); box-shadow:0 16px 34px rgba(0,0,0,.34); }

/* media */
.fx-media{
  position:relative; width:100%; aspect-ratio: 4/5;
  background: radial-gradient(120% 80% at 50% 10%, #1c1c1f 0, #0f0f10 40%, #0f0f10 100%);
  display:grid; place-items:center;
}
.fx-photo{ width:100%; height:100%; object-fit:contain; display:block; transition: transform .25s ease; }
.fx-card:hover .fx-photo{ transform: scale(1.02); }

/* ribbons */
.fx-tag{
  position:absolute; top:12px; left:12px;
  padding:5px 10px; font-size:12px; font-weight:800; color:#fff;
  border-radius:999px; letter-spacing:.2px;
  box-shadow:0 2px 10px rgba(0,0,0,.3); z-index:2;
}
.fx-red{ background:#ef4444; }
.fx-gold{ background:#f59e0b; color:#131313; }
.fx-blue{ background:#3b82f6; }
.fx-purple{ background:#8b5cf6; }

/* flags */
.fx-flag{
  position:absolute; left:12px; bottom:12px;
  width:28px; height:20px; object-fit:cover; border-radius:3px;
  box-shadow:0 1px 6px rgba(0,0,0,.35);
}
.fx-pill{
  position:absolute; left:48px; bottom:12px;
  padding:3px 8px; font-size:12px; font-weight:700; line-height:1.2;
  background:rgba(0,0,0,.6); color:#fff; border-radius:999px;
  backdrop-filter:saturate(120%) blur(2px);
}

/* info */
.fx-info{ padding:14px 14px 18px; text-align:center; }
.fx-name{
  margin:0 0 6px; font-weight:900; font-size:16px; letter-spacing:.3px; text-transform:uppercase;
}
.fx-weight{ margin:0; font-size:13px; color:#5b5e66; font-weight:600; }

/* ========== Merchandise ========== */
.main-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.merch-section{
  background:#fff; display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; padding:60px 40px; gap:40px;
}
.merch-left{ flex:1; min-width:250px; }
.merch-left h2 span{
  font-size:48px; color:#2f54eb; font-weight:900;
  border:2px solid #2f54eb; padding:5px 15px; display:inline-block;
}
.merch-left p{ margin-top:10px; color:#555; font-size:18px; font-style:italic; }

.merch-items{ display:flex; gap:30px; flex-wrap:wrap; flex:2; justify-content:center; }
.merch-card{
  width:220px; background:#eee; border-radius:20px; overflow:hidden; text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,.1); transition: transform .3s ease;
}
.merch-card:hover{ transform: scale(1.03); }
.merch-card img{ width:100%; height:auto; object-fit:contain; background:#ddd; padding:10px; }
.merch-btn{ background:#0052cc; color:#fff; font-size:18px; font-style:italic; font-weight:bold; padding:12px 0; }

/* ========== Sponsors (sp-) ========== */
.sp-section{ background:#111; color:#fff; padding:56px 16px 68px; border-top:4px solid #0047ab; }
.sp-header{ max-width:1200px; margin:0 auto 20px; text-align:center; }
.sp-header h2{ margin:0; font-family:'Anton',sans-serif; font-size:clamp(28px,3.2vw,44px); }
.sp-sub{ margin:6px 0 0; color:#cfcfcf; font-style:italic; }

.sp-grid{
  max-width:1200px; margin:0 auto;
  display:grid; gap:22px;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
}
.sp-logo{
  display:block; text-decoration:none; background:#0e0e0f; border:1px solid #1b1c20;
  border-radius:16px; overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.32);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.sp-logo:hover{ transform:translateY(-3px); background:#141518; border-color:#2a2c33; box-shadow:0 12px 28px rgba(0,0,0,.38); }
.sp-logo-wrap{ display:grid; place-items:center; aspect-ratio:5/2; padding:18px; }
.sp-logo img{
  max-width:100%; max-height:120px; object-fit:contain;
  filter: grayscale(35%) brightness(.95); transition: filter .18s ease, transform .18s ease;
}
.sp-logo:hover img{ filter:none; transform:scale(1.04); }

.sp-cta{ text-align:center; margin-top:39px; margin-bottom: 10px; }
.sp-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 20px; border-radius:999px; font-weight:800; letter-spacing:.3px;
  background:#0047ab; color:#fff; text-decoration:none;
  box-shadow:0 8px 20px rgba(0,71,171,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.sp-btn:hover{ transform:translateY(-1px); background:#2f54eb; box-shadow:0 12px 26px rgba(47,84,235,.45); }

/* ========== Footer ========== */
.footer{
  background:#0052cc; color:#fff; 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; }
.footer-column h3{ font-size:26px; margin-bottom:20px; font-family:'Anton', sans-serif; }
.footer-column ul{ list-style:none; }
.footer-column ul li{ margin-bottom:20px; font-size:15px; }
.footer-column ul li a{ color:#fff; text-decoration:none; }
.footer-column ul li a:hover{ text-decoration:underline; }
.footer-column ul li i{ margin-right:10px; }
.footer-note{ text-align:center; margin-top:20px; }
.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: "";
}

/* ========== Responsive ========== */
@media (max-width: 980px){
  /* hero title size already responsive via clamp */
  .event-container { padding: 40px 20px; }
}

@media (max-width: 768px){
  .navbar-container { flex-direction: column; align-items: center; }
  .burger { display: block; }

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

  .overlay h1, .overlay h2{ font-size: 50px; line-height: 1.2; }
  .overlay p{ font-size: 16px; }

  .fx-header{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .fx-cta{ align-self: flex-start; }

  .footer-content{ flex-direction: column; align-items: center; text-align: center; }
  .footer-logo{ margin: 0 auto 15px; }
}

@media (max-width: 560px){
  .section-title{ font-size: 44px; }
  .event-container{ gap: 18px; padding: 32px 16px; }
}
