/* style/cockfighting.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --button-text-color: #FFFF00;
  --background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
}

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

.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); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color), #004d26); /* Darker green gradient */
  color: var(--text-light);
}

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

.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 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

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

.page-cockfighting__intro-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-register {
  background: var(--register-button-color);
  color: var(--button-text-color);
}

.page-cockfighting__btn-register:hover {
  background: #a80707;
}

.page-cockfighting__btn-login {
  background: var(--login-button-color);
  color: var(--button-text-color);
}

.page-cockfighting__btn-login:hover {
  background: #a80707;
}

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

.page-cockfighting__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-cockfighting__section {
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-cockfighting__section-title--white {
  color: var(--text-light);
}

.page-cockfighting__container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-cockfighting__introduction-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
}