/* Hero Banner */
.sports-hero {
  position: relative;
  min-height: 20vh; /* keeps hero tall enough */
  background: #000 url("../images/BHARAT-TAEKWANDO-2.png") center center no-repeat;
  background-size: contain; /* ✅ show full image */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.sports-hero::after {
  /* dark overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.sports-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.sports-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.sports-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .sports-hero {
    min-height: 15vh;
    padding: 1.5rem;
  }
  .sports-hero h1 {
    font-size: 2.2rem;
  }
  .sports-hero p {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sports-hero {
    min-height: 10vh;
    
    padding: 1rem;
  }
  .sports-hero h1 {
    font-size: 1.6rem;
  }
  .sports-hero p {
    font-size: 0.95rem;
  }
}

.sports-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.sports-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.sports-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Sports Showcase Sections */
.sports-sections {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.sport-section {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sport-section.reverse {
  flex-direction: row-reverse;
}
.sport-image {
  flex: 1;
}
.sport-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
}
.sport-image img:hover {
  transform: scale(1.05);
}
.sport-text {
  flex: 1;
}
.sport-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f2d52;
}
.sport-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .sport-section, .sport-section.reverse {
    flex-direction: column;
  }
  .sports-hero h1 {
    font-size: 2.2rem;
  }
  .sports-hero p {
    font-size: 1rem;
  }
}
