/* style/sports.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */

.page-sports {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính */
  line-height: 1.6;
}

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

.page-sports__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Màu vàng Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Màu chữ phụ */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
  box-sizing: border-box;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Màu chữ chính */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Màu chữ phụ */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu nút chính */
  color: #F2FFF6; /* Màu chữ nút chính */
  border: none;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-sports__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Màu chữ nút phụ */
  border: 2px solid #2AD16F;
}

.page-sports__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F; /* Đổi màu chữ khi hover */
  box-shadow: 0 0 15px #57E38D;
}

/* Feature Section */
.page-sports__features-section,
.page-sports__guide-section,
.page-sports__faq-section {
  background-color: #F2FFF6; /* Nền sáng */
  color: #333333; /* Chữ tối */
  padding: 80px 0;
}

.page-sports__features-section .page-sports__section-title,
.page-sports__guide-section .page-sports__section-title,
.page-sports__faq-section .page-sports__section-title {
  color: #11A84E; /* Màu xanh lá chính */
}

.page-sports__features-section .page-sports__section-description,
.page-sports__guide-section .page-sports__section-description,
.page-sports__faq-section .page-sports__section-description {
  color: #555555;
}

.page-sports__feature-grid,
.page-sports__sport-grid,
.page-sports__guide-steps,
.page-sports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__card {
  background-color: #11271B; /* Màu nền Card BG */
  border: 1px solid #2E7A4E; /* Màu viền Card */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Màu chữ chính cho card */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-sports__features-section .page-sports__card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-sports__features-section .page-sports__card-title {
  color: #11A84E;
}

.page-sports__features-section .page-sports__card-text {
  color: #555555;
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__step-icon,
.page-sports__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Màu vàng Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Màu chữ phụ */
  line-height: 1.7;
}

/* Sports Types Section */
.page-sports__sports-types-section,
.page-sports__promotions-section,
.page-sports__cta-bottom-section {
  background-color: #08160F; /* Nền chính */
  color: #F2FFF6; /* Chữ chính */
  padding: 80px 0;
}

.page-sports__sports-types-section .page-sports__card-title,
.page-sports__promotions-section .page-sports__card-title {
  color: #F2C14E; /* Màu vàng Gold */
}

.page-sports__sports-types-section .page-sports__card-text,
.page-sports__promotions-section .page-sports__card-text {
  color: #A7D9B8; /* Màu chữ phụ */
}

/* Guide Section */
.page-sports__guide-section .page-sports__step-card .page-sports__btn-primary {
  margin-top: 20px;
}

/* Promotions Section */
.page-sports__cta-buttons--center {
  margin-top: 60px;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #11A84E; /* Màu xanh lá chính */
  list-style: none;
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-sports__faq-question .page-sports__faq-toggle {
  font-size: 1.5rem;
  color: #22C768; /* Màu xanh lá phụ */
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

.page-sports__faq-answer p {
  margin: 0;
}

/* CTA Bottom Section */
.page-sports__cta-bottom-section .page-sports__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-sports__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__container,
  .page-sports__hero-section,
  .page-sports__features-section,
  .page-sports__sports-types-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__cta-bottom-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-sports__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-sports__hero-description,
  .page-sports__section-description {
    font-size: 1rem;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
  }

  .page-sports__feature-grid,
  .page-sports__sport-grid,
  .page-sports__guide-steps,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-sports__card {
    padding: 25px;
  }

  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__step-icon,
  .page-sports__promo-image,
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-sports__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
}

/* Nội dung khu vực hình ảnh CSS kích thước tối thiểu */
/* Đảm bảo rằng tất cả các hình ảnh trong .page-sports không nhỏ hơn 200px */
.page-sports img {
  min-width: 200px;
  min-height: 200px;
}

/* Override specific smaller images if any, ensuring min-size */
.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__step-icon,
.page-sports__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* 允许的样式: width, height, border-radius, opacity (透明度), box-shadow */
/* 禁止使用 filter 属性改变图片颜色 */
.page-sports img {
  /* filter: none !important; */ /* Đảm bảo không có filter */
}