/* style/sports.css */

/* Variables for color scheme */
:root {
  --phdream-primary: #F2C14E;
  --phdream-secondary: #FFD36B;
  --phdream-card-bg: #111111;
  --phdream-background: #0A0A0A;
  --phdream-text-main: #FFF6D6;
  --phdream-border: #3A2A12;
  --phdream-glow: #FFD36B;
  --phdream-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: var(--phdream-text-main); /* Light text on dark background */
  background-color: var(--phdream-background); /* Body background is handled by shared.css */
  line-height: 1.6;
  font-size: 1rem;
}

/* General container for content sections */
.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section spacing */
.page-sports__section-title,
.page-sports__sub-title {
  color: var(--phdream-text-main);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-sports__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 60px;
}

.page-sports__sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 40px;
  text-align: left;
}

.page-sports__dark-section {
  background-color: var(--phdream-background);
  padding: 60px 0;
}

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

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

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

.page-sports__hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  max-width: 900px;
  margin: 20px auto;
}