/* style/sports.css */

:root {
  --page-sports-primary-color: #017439;
  --page-sports-secondary-color: #FFFFFF;
  --page-sports-text-dark: #333333;
  --page-sports-text-light: #ffffff;
  --page-sports-background-dark: #1a1a1a; /* Inherited from body */
  --page-sports-background-light: #ffffff;
  --page-sports-register-bg: #C30808;
  --page-sports-register-text: #FFFF00;
}

.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-sports-text-light); /* Default text color for dark body background */
  background-color: var(--page-sports-background-dark);
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-sports__hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-sports__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  color: var(--page-sports-text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}}