/* style/resources-thomo-cockfighting-schedule-highlights-2024.css */

/* Base Styles */
.page-resources-thomo-cockfighting-schedule-highlights-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024 p {
  margin-bottom: 1em;
  color: #f0f0f0;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024 a {
  color: #FFFF00; /* Yellow for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024 a:hover {
  color: #017439; /* Primary color on hover for better contrast on yellow */
  text-decoration: underline;
}

/* Buttons */
.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-primary,
.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-primary {
  background-color: #C30808; /* Red for primary action (Register/Login) */
  color: #FFFF00; /* Yellow for font on primary button */
  border: 2px solid #C30808;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
  color: #ffffff;
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Yellow text */
  border: 2px solid #FFFF00; /* Yellow border */
  margin-left: 15px; /* Add some spacing if next to primary */
}

.page-resources-thomo-cockfighting-schedule-highlights-2024__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808; /* Red text on hover */
  border-color: #FFFF00;
}