/* style/sports.css */
/* Base styles for the sports page */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  background-color: var(--secondary-color); /* White background */
}

/* Header offset for fixed header */
.page-sports__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

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

.page-sports__section-title {
  font-size: 36px;
  color: var(--primary-color); /* Green title */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports__section-title--light {
  color: #ffffff; /* White title for dark sections */
}

.page-sports__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-sports__text-block--light {
  color: #f0f0f0; /* Lighter text for dark sections */
}

/* HERO Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Adjust as needed */
  background: linear-gradient(135deg, var(--primary-color) 0%, #017439cc 100%); /* Green gradient */
  color: #ffffff;
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
  display: block;
}

.page-sports__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: inherit;
}

.page-sports__card-description {
  font-size: 16px;
  color: inherit;
  text-align: center;
}

/* Guide list styling */
.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-sports__guide-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.page-sports__guide-item:hover {
  transform: translateY(-3px);
}