/* style/sports.css */

/* Base Styles & Typography for page-sports */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark background, so light text */
  background-color: #0a0a0a;
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-sports__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-sports__btn--primary {
  background-color: #FFD700;
  color: #8B0000; /* Gold button with dark red text for contrast */
  border: 2px solid #FFD700;
}

.page-sports__btn--primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

.page-sports__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-sports__btn--link {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0;
  font-weight: bold;
  text-decoration: underline;
}

.page-sports__btn--link:hover {
  color: #e0b800;
}

/* Shared Backgrounds */
.page-sports__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

/* Image Reset */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Assuming shared.css doesn't set body padding-top */
  padding-bottom: 80px;
  overflow: hidden;
}

.page-sports__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.page-sports__hero-content {
  flex: 1;
  padding-left: 20px;
}

.page-sports__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-sports__hero-cta-buttons {
  display: flex;
  gap: 20px;
}

.page-sports__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.page-sports__hero-image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Introduction Section */
.page-sports__introduction-section {
  padding: 80px 0;
}

.page-sports__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-sports__content-text {
  flex: 1;
}

.page-sports__content-text p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-sports__content-image {
  flex: 1;
}

.page-sports__content-image img {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Cockfighting Section */
.page-sports__cockfighting-section {
  padding: 80px 0;
}

.page-sports__cockfighting-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-sports__cockfighting-image {
  flex: 1;
}

.page-sports__cockfighting-image img {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-sports__cockfighting-details {
  flex: 1;
}

.page-sports__cockfighting-details h3 {
  font-size: 24px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports__cockfighting-details p {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-sports__cockfighting-details ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-sports__cockfighting-details ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Other Sports Section */
.page-sports__other-sports-section {
  padding: 80px 0;
}

.page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.page-sports__sport-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-sports__sport-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__sport-card h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__sport-card p {
  font-size: 16px;
  color: #e0e0e0;
  padding: 0 15px;
}

/* Guide Section */
.page-sports__guide-section {
  padding: 80px 0;
}

.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #8B0000;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.page-sports__guide-item h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__guide-item p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-sports__guide-cta {
  text-align: center;
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
}

.page-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-sports__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-sports__promo-card h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__promo-card p {
  font-size: 16px;
  color: #e0e0e0;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-sports__all-promos-cta {
  text-align: center;
}

/* Safety & Support Section */
.page-sports__safety-support-section {
  padding: 80px 0;
}

.page-sports__safety-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports__info-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__info-card h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__info-card p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-sports__contact-cta {
  text-align: center;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-sports__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-sports__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Rotate for minus sign */
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

.page-sports__faq-answer p {
  font-size: 16px;
  color: #e0e0e0;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 42px;
  }
  .page-sports__hero-description {
    font-size: 18px;
  }
  .page-sports__section-title {
    font-size: 32px;
  }
  .page-sports__content-grid,
  .page-sports__cockfighting-content {
    flex-direction: column;
  }
  .page-sports__sports-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid,
  .page-sports__safety-support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .page-sports__hero-container {
    flex-direction: column-reverse;
    padding: 0;
  }
  .page-sports__hero-content {
    padding: 0 20px;
    text-align: center;
  }
  .page-sports__hero-image-wrapper {
    padding: 0 20px;
  }
  .page-sports__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-sports__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-sports__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-sports__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-sports__btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-sports__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-sports__introduction-section,
  .page-sports__cockfighting-section,
  .page-sports__other-sports-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__safety-support-section,
  .page-sports__faq-section {
    padding: 40px 0;
  }
  .page-sports__content-grid,
  .page-sports__cockfighting-content {
    gap: 20px;
  }
  .page-sports__content-text,
  .page-sports__cockfighting-details {
    padding: 0 15px;
  }
  .page-sports__content-text p,
  .page-sports__cockfighting-details p {
    font-size: 15px;
  }
  .page-sports__cockfighting-details h3 {
    font-size: 20px;
  }
  .page-sports__cockfighting-details ul {
    padding-left: 15px;
  }
  .page-sports__cockfighting-details ul li {
    font-size: 15px;
  }
  .page-sports__sports-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid,
  .page-sports__safety-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__sport-card,
  .page-sports__guide-item,
  .page-sports__promo-card,
  .page-sports__info-card {
    margin: 0 15px;
    padding: 20px;
  }
  .page-sports__sport-card img,
  .page-sports__promo-card img {
    
  }
  .page-sports__sport-card h3,
  .page-sports__guide-item h3,
  .page-sports__promo-card h3,
  .page-sports__info-card h3 {
    font-size: 20px;
  }
  .page-sports__sport-card p,
  .page-sports__guide-item p,
  .page-sports__promo-card p,
  .page-sports__info-card p {
    font-size: 15px;
  }
  .page-sports__guide-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-sports__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-sports__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-sports__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-sports__faq-answer {
    padding: 0 15px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 15px !important;
  }
  /* Ensure all images inside .page-sports are responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__container,
  .page-sports__hero-container,
  .page-sports__hero-content,
  .page-sports__hero-image-wrapper,
  .page-sports__content-text,
  .page-sports__content-image,
  .page-sports__cockfighting-image,
  .page-sports__cockfighting-details,
  .page-sports__guide-cta,
  .page-sports__all-promos-cta,
  .page-sports__contact-cta,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports__hero-cta-buttons,
  .page-sports__cockfighting-content,
  .page-sports__content-grid {
    padding-left: 15px;
    padding-right: 15px;
  }
}