/* style/cockfighting.css */
.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-cockfighting__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting__text-block p {
  margin-bottom: 1em;
  color: #f0f0f0;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #007BFF, #0056b3);
  overflow: hidden;
  min-height: 600px;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-cockfighting__hero-title {
  font-size: 3.5em;
  color: #FFC107;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-cockfighting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  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, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-cockfighting__btn-primary {
  background-color: #FFC107;
  color: #000000; /* Ensure high contrast */
}

.page-cockfighting__btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  color: #FFC107;
  border-color: #FFC107;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #FFC107;
  color: #000000; /* Ensure high contrast */
  transform: translateY(-3px);
}

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

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

/* Introduction Section */
.page-cockfighting__introduction-section {
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #f0f0f0;
  padding: 60px 0;
}

/* Video Section */
.page-cockfighting__video-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.page-cockfighting__video-wrapper {
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-cockfighting__video-cta {
  margin-top: 20px;
}

/* Types Section */
.page-cockfighting__types-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-cockfighting__card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Ensure light text on dark card */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-cockfighting__card-description {
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-cockfighting__guide-section {
  background-color: #0a0a0a;
  padding: 60px 0;
}

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

.page-cockfighting__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Strategy Section */
.page-cockfighting__strategy-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-cockfighting__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-cockfighting__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-cockfighting__strategy-title {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-cockfighting__strategy-description {
  color: #e0e0e0;
}

.page-cockfighting__cta-strategy {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  background-color: #0a0a0a;
  padding: 60px 0;
}

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

.page-cockfighting__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 1.5em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-cockfighting__promo-description {
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Safety Section */
.page-cockfighting__safety-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-cockfighting__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}