/* style/cockfighting.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --border-color: #e0e0e0;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

/* 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);
  background: linear-gradient(135deg, var(--primary-color) 0%, #a8e0f9 100%);
  color: var(--text-color-light);
  overflow: hidden;
}

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

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-cockfighting__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-cockfighting__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-cockfighting__section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__section--overview {
  background-color: var(--background-light);
}

.page-cockfighting__section--types {
  background-color: #f9f9f9;
}

.page-cockfighting__section--promotions {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-cockfighting__section--support {
  background-color: var(--background-light);
}

.page-cockfighting__section--faq {
  background-color: #f9f9f9;
}

.page-cockfighting__section--conclusion {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-cockfighting__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherits from section, handles dark/light bg */
}

.page-cockfighting__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
}

.page-cockfighting__content-area {
  text-align: left;
  padding-top: 20px;
}

.page-cockfighting__sub-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-cockfighting__mini-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color-dark);
}

.page-cockfighting__section--promotions .page-cockfighting__mini-title,
.page-cockfighting__section--conclusion .page-cockfighting__mini-title {
  color: var(--text-color-light);
}

.page-cockfighting p {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-color-dark);
}

.page-cockfighting__section--promotions p,
.page-cockfighting__section--conclusion p {
  color: var(--text-color-light);
}

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

.page-cockfighting__image--small {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-cockfighting__list,
.page-cockfighting__numbered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-cockfighting__list-item,
.page-cockfighting__numbered-list li {
  margin-bottom: 10px;
  font-size: 17px;
  padding-left: 30px;
  position: relative;
  color: var(--text-color-dark);
}

.page-cockfighting__list-item::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
  top: -2px;
}

.page-cockfighting__numbered-list li::before {
  counter-increment: item;
  content: counter(item) '.';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
  top: 0;
}

/* CTA Buttons */
.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-cockfighting__cta-button--primary:hover {
  background: #1e87bb;
  border-color: #1e87bb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__cta-button--secondary {
  background: var(--background-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-cockfighting__cta-button--secondary:hover {
  background: #e0f2f7;
  color: #1e87bb;
  border-color: #1e87bb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__cta-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

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

.page-cockfighting__card {
  background: var(--background-light);
  color: var(--text-color-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-cockfighting__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-cockfighting__card-text {
  font-size: 16px;
  margin-bottom: 25px;
}

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

.page-cockfighting__feature-item {
  background: var(--background-light);
  color: var(--text-color-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-cockfighting__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-cockfighting__feature-description {
  font-size: 16px;
}