/* style/cockfighting.css */
.page-cockfighting {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-cockfighting__hero-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 36, 99, 0.7), rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-cockfighting__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B000; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-actions {
  display: flex;
  gap: 20px;
}

.page-cockfighting__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-cockfighting__hero-button--primary {
  background-color: #E0B000; /* Gold primary */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E0B000;
}

.page-cockfighting__hero-button--primary:hover {
  background-color: #ffc107;
  transform: translateY(-2px);
}

.page-cockfighting__hero-button--secondary {
  background-color: transparent;
  color: #E0B000; /* Gold text */
  border: 2px solid #E0B000;
}

.page-cockfighting__hero-button--secondary:hover {
  background-color: rgba(224, 176, 0, 0.2);
  transform: translateY(-2px);
}

.page-cockfighting__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B000;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0A2463; /* Dark blue button */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.page-cockfighting__button:hover {
  background-color: #1a428a;
  transform: translateY(-1px);
}

.page-cockfighting__button--primary {
  background-color: #E0B000;
  color: #0A2463;
  border: 2px solid #E0B000;
}

.page-cockfighting__button--primary:hover {
  background-color: #ffc107;
}

.page-cockfighting__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-cockfighting__introduction-section {
  background-color: #f9f9f9;
}

.page-cockfighting__how-to-play-section {
  background-color: #ffffff;
}

.page-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting__step-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting__step-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be object-fit */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-cockfighting__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting__features-section {
  background-color: #f9f9f9;
}

.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-cockfighting__feature-card {
  background-color: #ffffff;
  border-left: 5px solid #E0B000;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-cockfighting__feature-description {
  font-size: 0.95em;
  color: #666666;
}

.page-cockfighting__promotions-section {
  background-color: #ffffff;
}

.page-cockfighting__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting__promo-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting__promo-image {
  width: 100%;
  height: 300px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 1.8em;
  color: #0A2463;
  margin: 25px 20px 10px;
}

.page-cockfighting__promo-description {
  font-size: 1.05em;
  color: #555555;
  padding: 0 20px 25px;
}

.page-cockfighting__promo-card .page-cockfighting__button {
  margin-bottom: 25px;
}

.page-cockfighting__faq-section {
  background-color: #f9f9f9;
}

.page-cockfighting__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  padding: 25px;
}

.page-cockfighting__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-cockfighting__cta-section {
  background-color: #0A2463; /* Dark blue background for CTA */
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-cockfighting__cta-title {
  font-size: 2.8em;
  color: #E0B000; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-cockfighting__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__promotions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
  }
  .page-cockfighting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__hero-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-cockfighting__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting__steps-grid,
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__cta-title {
    font-size: 2em;
  }
  .page-cockfighting__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting__hero-actions {
    width: 100%;
  }
  .page-cockfighting__hero-button {
    width: 90%;
  }
  .page-cockfighting__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting__text-content {
    font-size: 0.95em;
  }
  .page-cockfighting__step-card,
  .page-cockfighting__feature-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__faq-item {
    padding: 20px;
  }
  .page-cockfighting__step-title,
  .page-cockfighting__feature-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__faq-question {
    font-size: 1.2em;
  }
  .page-cockfighting__cta-title {
    font-size: 1.8em;
  }
}