/* style/cockfighting-live-history-culture.css */
.page-cockfighting-live-history-culture {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #1A1A2E; /* Main background color */
  line-height: 1.6;
}

.page-cockfighting-live-history-culture__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live-history-culture__hero {
  position: relative;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-cockfighting-live-history-culture__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-cockfighting-live-history-culture__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
  z-index: 2;
}

.page-cockfighting-live-history-culture__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
}

.page-cockfighting-live-history-culture__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-history-culture__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-cockfighting-live-history-culture__hero-button,
.page-cockfighting-live-history-culture__button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #1A1A2E; /* Dark text on accent background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting-live-history-culture__hero-button:hover,
.page-cockfighting-live-history-culture__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-cockfighting-live-history-culture__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting-live-history-culture__section:last-of-type {
  border-bottom: none;
}

.page-cockfighting-live-history-culture__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-live-history-culture__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-live-history-culture__sub-title {
  font-size: 2em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-cockfighting-live-history-culture p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-cockfighting-live-history-culture .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-cockfighting-live-history-culture__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.page-cockfighting-live-history-culture__content-row--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting-live-history-culture__text-content {
  flex: 1;
  padding: 20px;
}

.page-cockfighting-live-history-culture__image-wrapper {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.page-cockfighting-live-history-culture__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-cockfighting-live-history-culture__image:hover {
  transform: scale(1.02);
}

.page-cockfighting-live-history-culture__features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-cockfighting-live-history-culture__features-list li {
  background-color: rgba(255, 215, 0, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #E0E0E0;
}

.page-cockfighting-live-history-culture__features-list li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-cockfighting-live-history-culture__features-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-cockfighting-live-history-culture__cta {
  background-color: #0F0F1A; /* Slightly lighter dark for CTA */
  text-align: center;
  padding: 80px 0;
}

.page-cockfighting-live-history-culture__cta-content {
  max-width: 900px;
}

.page-cockfighting-live-history-culture__cta .page-cockfighting-live-history-culture__section-title {
  margin-bottom: 20px;
}

.page-cockfighting-live-history-culture__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #D0D0D0;
}

.page-cockfighting-live-history-culture__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-live-history-culture__button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-cockfighting-live-history-culture__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-cockfighting-live-history-culture__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-cockfighting-live-history-culture__responsible-gaming {
  text-align: center;
  padding: 40px 0;
  background-color: #1A1A2E;
}

.page-cockfighting-live-history-culture__responsible-gaming p {
  font-size: 0.9em;
  color: #888888;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-live-history-culture__hero-title {
    font-size: 2.8em;
  }

  .page-cockfighting-live-history-culture__hero-subtitle {
    font-size: 1.2em;
  }

  .page-cockfighting-live-history-culture__section-title {
    font-size: 2.2em;
  }

  .page-cockfighting-live-history-culture__sub-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-history-culture__content-row {
    flex-direction: column;
  }

  .page-cockfighting-live-history-culture__content-row--reverse {
    flex-direction: column;
  }

  .page-cockfighting-live-history-culture__text-content,
  .page-cockfighting-live-history-culture__image-wrapper {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-history-culture__hero {
    height: 400px;
  }

  .page-cockfighting-live-history-culture__hero-title {
    font-size: 2.2em;
  }

  .page-cockfighting-live-history-culture__hero-subtitle {
    font-size: 1em;
  }

  .page-cockfighting-live-history-culture__hero-button,
  .page-cockfighting-live-history-culture__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-cockfighting-live-history-culture__section {
    padding: 40px 0;
  }

  .page-cockfighting-live-history-culture__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-history-culture__sub-title {
    font-size: 1.5em;
  }

  .page-cockfighting-live-history-culture p {
    font-size: 1em;
  }

  .page-cockfighting-live-history-culture__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-history-culture__hero {
    height: 300px;
  }

  .page-cockfighting-live-history-culture__hero-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-history-culture__hero-subtitle {
    font-size: 0.9em;
  }

  .page-cockfighting-live-history-culture__hero-button,
  .page-cockfighting-live-history-culture__button {
    padding: 10px 20px;
    font-size: 0.8em;
  }

  .page-cockfighting-live-history-culture__section-title {
    font-size: 1.5em;
  }

  .page-cockfighting-live-history-culture__sub-title {
    font-size: 1.3em;
  }
}