/* style/sports.css */
.page-sports {
  color: #FFF6D6; /* Text Main color for dark body background */
  background-color: #0A0A0A; /* Background color for main content area */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding for the first content section */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-sports__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 20px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-sports__hero-content {
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin: 20px auto;
}

.page-sports__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF6D6;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-sports__hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #FFD36B;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto; /* Default to auto, adjust for mobile */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button background */
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B;
  border: 2px solid #F2C14E;
}

.page-sports__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(58, 42, 18, 0.6);
  background: #F2C14E;
  color: #111111;
}