/* style/cockfighting.css */

/* Custom CSS variables for this page if needed, otherwise use shared */
:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-accent-color: #EA7C07; /* For login button */
  --page-dark-text: #333333;
  --page-light-text: #ffffff;
  --page-background: #ffffff; /* According to body background color from shared.css */
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-dark-text); /* Default text color for light background */
  background-color: var(--page-background); /* Explicitly white as per body background */
}

/* Fixed Header Spacing: Shared.css is assumed to handle body padding.
   If not, .page-cockfighting would need padding-top: var(--header-offset, 120px);
   However, the hero section example already includes this, so we apply it there. */

.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(--page-primary-color) 0%, var(--page-secondary-color) 100%);
  color: var(--page-light-text);
  overflow: hidden; /* Ensure no overflow 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; /* Below content */
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2; /* Above image */
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

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

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-light-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}