/* style/cockfight-culture-history-global-cultures.css */
.page-cockfight-culture-history-global-cultures {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.page-cockfight-culture-history-global-cultures__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfight-culture-history-global-cultures__hero-section {
  background: linear-gradient(135deg, #B22222, #8B0000);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-cockfight-culture-history-global-cultures__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfight-culture-history-global-cultures__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff; /* White for subtitle */
}

.page-cockfight-culture-history-global-cultures__hero-subtitle a {
  color: #FFD700;
  text-decoration: underline;
}

.page-cockfight-culture-history-global-cultures__hero-subtitle a:hover {
  color: #FFFACD;
}

.page-cockfight-culture-history-global-cultures__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #B22222; /* Dark red text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-cockfight-culture-history-global-cultures__cta-button:hover {
  background-color: #FFFACD;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-cockfight-culture-history-global-cultures__content-section,
.page-cockfight-culture-history-global-cultures__conclusion-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-cockfight-culture-history-global-cultures__section-title {
  font-size: 2.5em;
  color: #B22222; /* Dark red for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-cockfight-culture-history-global-cultures__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfight-culture-history-global-cultures__subsection-title {
  font-size: 1.8em;
  color: #8B0000; /* Slightly darker red for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-cockfight-culture-history-global-cultures p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-cockfight-culture-history-global-cultures p a {
  color: #B22222;
  text-decoration: underline;
}

.page-cockfight-culture-history-global-cultures p a:hover {
  color: #FFD700;
}

.page-cockfight-culture-history-global-cultures ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-cockfight-culture-history-global-cultures ul li {
  margin-bottom: 10px;
}

.page-cockfight-culture-history-global-cultures ul li strong {
  color: #B22222;
}

.page-cockfight-culture-history-global-cultures ul li a {
  color: #B22222;
  text-decoration: underline;
}

.page-cockfight-culture-history-global-cultures ul li a:hover {
  color: #FFD700;
}

.page-cockfight-culture-history-global-cultures__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-cockfight-culture-history-global-cultures__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-cockfight-culture-history-global-cultures__image:hover {
  transform: scale(1.01);
}

.page-cockfight-culture-history-global-cultures__image-wrapper figcaption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.95em;
}

.page-cockfight-culture-history-global-cultures__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-cockfight-culture-history-global-cultures__cta-button--primary {
  background-color: #B22222;
  color: #ffffff;
  border-color: #B22222;
  margin-right: 20px;
}

.page-cockfight-culture-history-global-cultures__cta-button--primary:hover {
  background-color: #8B0000;
  border-color: #8B0000;
  color: #FFD700;
}

.page-cockfight-culture-history-global-cultures__cta-button--secondary {
  background-color: #FFD700;
  color: #B22222;
  border-color: #FFD700;
}

.page-cockfight-culture-history-global-cultures__cta-button--secondary:hover {
  background-color: #FFFACD;
  border-color: #FFFACD;
  color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfight-culture-history-global-cultures__hero-title {
    font-size: 2.5em;
  }

  .page-cockfight-culture-history-global-cultures__hero-subtitle {
    font-size: 1.1em;
  }

  .page-cockfight-culture-history-global-cultures__section-title {
    font-size: 2em;
  }

  .page-cockfight-culture-history-global-cultures__subsection-title {
    font-size: 1.5em;
  }

  .page-cockfight-culture-history-global-cultures__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfight-culture-history-global-cultures__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfight-culture-history-global-cultures__cta-button--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfight-culture-history-global-cultures__hero-title {
    font-size: 2em;
  }

  .page-cockfight-culture-history-global-cultures__section-title {
    font-size: 1.8em;
  }

  .page-cockfight-culture-history-global-cultures__subsection-title {
    font-size: 1.3em;
  }

  .page-cockfight-culture-history-global-cultures p,
  .page-cockfight-culture-history-global-cultures ul {
    font-size: 1em;
  }

  .page-cockfight-culture-history-global-cultures__cta-button {
    width: 90%;
    margin: 0 auto 15px auto;
  }
}