/* style/cockfighting.css */
/* Base Styles */
.page-cockfighting {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333333; /* Default dark text for light body background */
    background-color: #ffffff; /* Default body background */
}

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

.page-cockfighting__section {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__section--introduction,
.page-cockfighting__section--types,
.page-cockfighting__section--guide,
.page-cockfighting__section--cta {
    background-color: #ffffff;
    color: #333333;
}

.page-cockfighting__section--promotions,
.page-cockfighting__section--faq {
    background-color: #f8f8f8; /* Light gray background for contrast */
    color: #333333;
}

.page-cockfighting__dark-section {
    background-color: #017439; /* Primary brand color */
    color: #ffffff; /* White text for dark background */
}

.page-cockfighting__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-cockfighting__section-title {
    font-size: 38px;
    color: #017439; /* Primary color for titles */
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-cockfighting__dark-section .page-cockfighting__section-title {
    color: #ffffff; /* White titles on dark sections */
}

.page-cockfighting__text-block {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.page-cockfighting__highlight {
    color: #C30808; /* Using a strong accent color for highlights, for better visibility with #017439 */
    font-weight: bold;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #017439; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.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;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-cockfighting__main-title {
    font-size: 52px;
    margin-bottom: 25px;
    color: #FFFFFF; /* White for hero title */
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-cockfighting__hero-description {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-cockfighting__hero-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__cta-button:hover {
  background: #a00606; /* Darker red on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Card Grid */
.page-cockfighting__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-cockfighting__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 35px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
}

.page-cockfighting__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__card-title {
    font-size: 26px;
    color: #017439;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__card img {
    width: 100%;
    height: 280px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    display: block;
}

.page-cockfighting__card-description {
    font-size: 17px;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Features Grid */
.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-cockfighting__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-cockfighting__dark-section .page-cockfighting__feature-item {
    background-color: #028a49; /* Slightly lighter green for cards on dark background */
    color: #ffffff;
    border-color: #03a055;
}

.page-cockfighting__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-item img {
    
    
    margin-bottom: 20px;
    object-fit: contain;
}

.page-cockfighting__feature-title {
    font-size: 24px;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__dark-section .page-cockfighting__feature-title {
    color: #ffffff;
}

.page-cockfighting__feature-description {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.page-cockfighting__dark-section .page-cockfighting__feature-description {
    color: #e0e0e0;
}

/* Guide Steps */
.page-cockfighting__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-cockfighting__step-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__step-title {
    font-size: 26px;
    color: #C30808; /* Accent color for step titles */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__step-description {
    font-size: 17px;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.page-cockfighting__btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #017439;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-primary:hover {
    background-color: #028a49;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__image-wrapper {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-cockfighting__image-wrapper--large {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotions Section */
.page-cockfighting__promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-cockfighting__promotion-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__promotion-title {
    font-size: 26px;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__promotion-description {
    font-size: 17px;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

/* Safety Section */
.page-cockfighting__safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-cockfighting__safety-item {
    background-color: #028a49; /* Slightly lighter green for cards on dark background */
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border: 1px solid #03a055;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__safety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__safety-title {
    font-size: 26px;
    color: #FFFF00; /* Yellow accent for titles on dark background */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__safety-description {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.page-cockfighting__button-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cockfighting__button-group .page-cockfighting__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
}

.page-cockfighting__button-group .page-cockfighting__btn-primary:hover {
    background-color: #a00606;
}

.page-cockfighting__button-group .page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-cockfighting__button-group .page-cockfighting__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #e8e8e8;
}

.page-cockfighting__faq-question h3 {
    font-size: 20px;
    color: #017439;
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
}

.page-cockfighting__faq-toggle {
    font-size: 24px;
    color: #C30808;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    max-height: 300px; /* Adjust based on expected content length */
    padding: 20px 25px;
}

.page-cockfighting__faq-answer p {
    font-size: 16px;
    color: #555555;
    margin: 0;
    line-height: 1.7;
}

/* CTA Section */
.page-cockfighting__section--cta .page-cockfighting__container {
    background-color: #017439;
    color: #ffffff;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__section--cta .page-cockfighting__section-title {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 30px;
}

.page-cockfighting__section--cta .page-cockfighting__text-block {
    color: #f0f0f0;
    font-size: 20px;
    margin-bottom: 40px;
}

.page-cockfighting__cta-button--large {
    padding: 20px 60px;
    font-size: 24px;
    background: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-cockfighting__cta-button--large:hover {
    background: #a00606;
    border-color: #a00606;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-cockfighting__section {
        padding: 60px 0;
    }

    .page-cockfighting__section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .page-cockfighting__main-title {
        font-size: 42px;
    }

    .page-cockfighting__hero-description {
        font-size: 19px;
        margin-bottom: 40px;
    }

    .page-cockfighting__cta-button {
        padding: 15px 35px;
        font-size: 18px;
    }

    .page-cockfighting__card-grid,
    .page-cockfighting__features-grid,
    .page-cockfighting__guide-steps,
    .page-cockfighting__promotion-list,
    .page-cockfighting__safety-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-cockfighting__card img {
        height: 240px;
    }

    .page-cockfighting__card-title,
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__promotion-title,
    .page-cockfighting__safety-title {
        font-size: 22px;
    }

    .page-cockfighting__text-block,
    .page-cockfighting__card-description,
    .page-cockfighting__feature-description,
    .page-cockfighting__step-description,
    .page-cockfighting__promotion-description,
    .page-cockfighting__safety-description,
    .page-cockfighting__faq-answer p {
        font-size: 16px;
    }

    .page-cockfighting__faq-question h3 {
        font-size: 18px;
    }

    .page-cockfighting__section--cta .page-cockfighting__section-title {
        font-size: 36px;
    }

    .page-cockfighting__section--cta .page-cockfighting__text-block {
        font-size: 18px;
    }

    .page-cockfighting__cta-button--large {
        padding: 18px 50px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__section {
        padding: 50px 0;
    }

    .page-cockfighting__section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .page-cockfighting__main-title {
        font-size: 36px;
    }

    .page-cockfighting__hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .page-cockfighting__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__cta-button {
        width: 80%;
        max-width: 300px;
        padding: 14px 25px;
        font-size: 17px;
    }

    .page-cockfighting__card-grid,
    .page-cockfighting__features-grid,
    .page-cockfighting__guide-steps,
    .page-cockfighting__promotion-list,
    .page-cockfighting__safety-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__card img {
        height: 200px;
    }

    .page-cockfighting__card,
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__promotion-item,
    .page-cockfighting__safety-item {
        padding: 25px;
    }

    .page-cockfighting__card-title,
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__promotion-title,
    .page-cockfighting__safety-title {
        font-size: 20px;
    }

    .page-cockfighting__text-block,
    .page-cockfighting__card-description,
    .page-cockfighting__feature-description,
    .page-cockfighting__step-description,
    .page-cockfighting__promotion-description,
    .page-cockfighting__safety-description,
    .page-cockfighting__faq-answer p {
        font-size: 15px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }

    .page-cockfighting__faq-question h3 {
        font-size: 16px;
    }

    .page-cockfighting__section--cta .page-cockfighting__section-title {
        font-size: 30px;
    }

    .page-cockfighting__section--cta .page-cockfighting__text-block {
        font-size: 16px;
    }

    .page-cockfighting__cta-button--large {
        padding: 16px 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__container {
        padding: 0 15px;
    }

    .page-cockfighting__section {
        padding: 40px 0;
    }

    .page-cockfighting__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page-cockfighting__main-title {
        font-size: 30px;
    }

    .page-cockfighting__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-cockfighting__cta-button {
        width: 90%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 16px;
    }

    .page-cockfighting__card,
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__promotion-item,
    .page-cockfighting__safety-item {
        padding: 20px;
    }

    .page-cockfighting__card-title,
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__promotion-title,
    .page-cockfighting__safety-title {
        font-size: 18px;
    }

    .page-cockfighting__text-block,
    .page-cockfighting__card-description,
    .page-cockfighting__feature-description,
    .page-cockfighting__step-description,
    .page-cockfighting__promotion-description,
    .page-cockfighting__safety-description,
    .page-cockfighting__faq-answer p {
        font-size: 14px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 10px 20px;
        font-size: 15px;
    }

    .page-cockfighting__faq-question h3 {
        font-size: 15px;
    }

    .page-cockfighting__faq-question {
        padding: 15px 20px;
    }

    .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
        padding: 15px 20px;
    }

    .page-cockfighting__section--cta .page-cockfighting__section-title {
        font-size: 26px;
    }

    .page-cockfighting__section--cta .page-cockfighting__text-block {
        font-size: 15px;
    }

    .page-cockfighting__cta-button--large {
        padding: 14px 30px;
        font-size: 18px;
    }
}