/* style/cockfighting.css */

/* General page styling */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1, #0d0d0d); /* Fallback to a dark color if var not defined */
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Brand gold color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #e0e0e0;
}

.page-cockfighting__text-link {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-cockfighting__text-link:hover {
  color: #ffffff;
}

/* Buttons */
.page-cockfighting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-cockfighting__btn--primary {
  background: #FFD700; /* Gold background */
  color: #000000; /* Black text for contrast */
  border: 2px solid #FFD700;
}

.page-cockfighting__btn--primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-cockfighting__btn--secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-cockfighting__btn--secondary:hover {
  background: #FFD700;
  color: #000000;
}

.page-cockfighting__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-cockfighting__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Card Styling */
.page-cockfighting__light-bg {
  background-color: #ffffff; /* White background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

.page-cockfighting__dark-bg {
  background-color: var(--dark-bg-1, #0d0d0d); /* Dark background */
  color: #f0f0f0; /* Light text */
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  color: #8B0000; /* Deep red for card titles */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting__card-text {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
}

/* Hero Section */
.page-cockfighting__hero-banner {
  position: relative;
  width: 100%;
  min-height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #1a1a1a; /* Fallback dark background */
  padding-bottom: 60px; /* Ensure space below content */
  box-sizing: border-box;
}

/* Fixed header padding for first section */
.page-cockfighting__hero-banner[style*="padding-top"] {
    padding-top: 120px; /* Desktop default */
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-cockfighting__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.page-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

/* Intro Section */
.page-cockfighting__intro-section {
  padding: 80px 0;
}

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

.page-cockfighting__feature-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Types Section */
.page-cockfighting__types-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2, #1a1a1a);
}

.page-cockfighting__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__type-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-cockfighting__type-card .page-cockfighting__card-title {
  color: #FFD700; /* Gold for type card titles */
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 80px 0;
}

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

.page-cockfighting__step-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-cockfighting__step-number {
  background-color: #8B0000; /* Deep red for step number background */
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Tips Section */
.page-cockfighting__tips-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2, #1a1a1a);
}

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

.page-cockfighting__tip-card {
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__tip-card .page-cockfighting__card-title {
  color: #8B0000;
}

.page-cockfighting__tip-card .page-cockfighting__card-text {
  color: #555555;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us {
  padding: 80px 0;
}

.page-cockfighting__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__advantage-list li {
  display: flex;
  align-items: flex-start;
  background-color: #1a1a1a; /* Darker background for list items */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__advantage-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__advantage-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-cockfighting__advantage-list p {
  margin: 0;
  color: #e0e0e0;
}

.page-cockfighting__advantage-list strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

/* CTA Section */
.page-cockfighting__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__cta-section .page-cockfighting__container {
  padding: 60px 30px;
  border-radius: 12px;
  background: linear-gradient(90deg, #8B0000, #FFD700); /* Gradient background for CTA */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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