/* style/cockfighting.css */

/* --- General Page Styling --- */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background for the main content area */
}

/* --- Section Styling --- */
.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-cockfighting__section--intro,
.page-cockfighting__section--guide,
.page-cockfighting__section--promotions,
.page-cockfighting__section--faq {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__section--types,
.page-cockfighting__section--strategies,
.page-cockfighting__section--safety,
.page-cockfighting__section--why-choose {
  background-color: #003366; /* Main brand color */
  color: #ffffff; /* White text for dark background */
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #003366;
}

.page-cockfighting__section-title--light {
  color: #ffffff;
}

.page-cockfighting__text-block {
  font-size: 17px;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__text-block--light {
  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: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #003366; /* Base color for hero */
  overflow: hidden; /* To contain potential overflows from image */
}

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

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1; /* Ensure image is behind content if content is overlaid */
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 12px;
  margin-top: -80px; /* Overlap with image slightly */
  color: #ffffff;
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFCC00; /* Auxiliary brand color for highlight */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFCC00; /* Auxiliary brand color */
  color: #003366; /* Main brand color for text on button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__cta-button:hover {
  background: #e6b800; /* Slightly darker yellow on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-button--light {
  background: #ffffff;
  color: #003366;
  border: 2px solid #003366;
}

.page-cockfighting__cta-button--light:hover {
  background: #f0f0f0;
  border-color: #003366;
  color: #003366;
}

/* --- Image & Content in Intro Section --- */
.page-cockfighting__image-content {
  margin: 40px auto;
  max-width: 800px;
}

.page-cockfighting__image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Types Grid Styling --- */
.page-cockfighting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__card--dark {
  background-color: rgba(255, 255, 255, 0.08); /* Light translucent on dark background */
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__card--dark:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003366;
}

.page-cockfighting__card--dark .page-cockfighting__card-title {
  color: #FFCC00;
}

.page-cockfighting__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card-text {
  font-size: 16px;
  line-height: 1.7;
}

/* --- Steps Grid Styling --- */
.page-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__step-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #003366;
  color: #FFCC00;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003366;
}

.page-cockfighting__step-description {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555555;
}

.page-cockfighting__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #003366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
  background: #002244;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #003366;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #003366;
}

.page-cockfighting__btn-secondary:hover {
  background: #f0f0f0;
  color: #002244;
  border-color: #002244;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Tips Grid Styling --- */
.page-cockfighting__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__tip-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-cockfighting__tip-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFCC00;
}

.page-cockfighting__tip-description {
  font-size: 16px;
  line-height: 1.7;
}

.page-cockfighting__button-group {
  margin-top: 50px;
}

/* --- Promotions Grid Styling --- */
.page-cockfighting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__promo-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
  color: #333333;
}

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

.page-cockfighting__promo-card img {
  width: 100%;
  height: 200px; /* Consistent height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003366;
}