/* style/cockfighting.css */

/* Base Styles & Typography */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background */
}

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

.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.page-cockfighting__section-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__section-subtitle--white {
  color: #f0f0f0;
}

.page-cockfighting__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-cockfighting__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-cockfighting__text-block {
  flex: 1;
  padding: 20px;
}

.page-cockfighting__text-block p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333333;
}