/* style/sports.css */

/* Custom Colors */
:root {
  --page-sports-bg: #08160F;
  --page-sports-card-bg: #11271B;
  --page-sports-text-main: #F2FFF6;
  --page-sports-text-secondary: #A7D9B8;
  --page-sports-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-sports-border: #2E7A4E;
  --page-sports-glow: #57E38D;
  --page-sports-gold: #F2C14E;
  --page-sports-divider: #1E3A2A;
  --page-sports-deep-green: #0A4B2C;
}

.page-sports {
  background-color: var(--page-sports-bg); /* Body background handled by shared.css, this is for main content area if it needs its own specific bg */
  color: var(--page-sports-text-main); /* Default text color for main content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__section-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: bold;
  color: var(--page-sports-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports__section-description {
  font-size: 1.1em;
  color: var(--page-sports-text-secondary);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 40px; /* Space between image and content */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.page-sports__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font size with clamp */
  font-weight: 900;
  color: var(--page-sports-gold); /* Using gold for main title as per brand colors */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-sports__intro-text {
  font-size: 1.2em;
  color: var(--page-sports-text-main);
  margin-bottom: 40px;
}

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