/* style/resources-cockfighting-culture-history.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-color-body: var(--background-color, #1a1a2e);
    --login-color: #EA7C07;
}

.page-resources-cockfighting-culture-history {
    color: var(--text-color-light); /* Default to light text for dark body background */
    background-color: var(--background-color-body);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-resources-cockfighting-culture-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-cockfighting-culture-history__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    overflow: hidden;
    background-color: var(--primary-color);
}

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

.page-resources-cockfighting-culture-history__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-cockfighting-culture-history__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-cockfighting-culture-history__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__hero-cta-button {
    display: inline-block;
    background-color: var(--login-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-cockfighting-culture-history__hero-cta-button:hover {
    background-color: darken(var(--login-color), 10%);
}

.page-resources-cockfighting-culture-history__section {
    padding: 60px 0;
    background-color: var(--background-color-body);
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-cockfighting-culture-history__section-title--light {
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__introduction-section p,
.page-resources-cockfighting-culture-history__rules-section p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__introduction-section h3,
.page-resources-cockfighting-culture-history__rules-section h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-cockfighting-culture-history__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px; /* Ensure content images are not too wide */
}

.page-resources-cockfighting-culture-history__breeds-section {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-resources-cockfighting-culture-history__breeds-section .page-resources-cockfighting-culture-history__section-title {
    color: var(--primary-color);
}

.page-resources-cockfighting-culture-history__breeds-section p {
    color: var(--text-color-dark);
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-resources-cockfighting-culture-history__breeds-section h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-resources-cockfighting-culture-history__card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    color: var(--text-color-dark);
    transition: transform 0.3s ease;
}

.page-resources-cockfighting-culture-history__card:hover {
    transform: translateY(-5px);
}

.page-resources-cockfighting-culture-history__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-cockfighting-culture-history__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-cockfighting-culture-history__card p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.page-resources-cockfighting-culture-history__modern-era-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__modern-era-section .page-resources-cockfighting-culture-history__section-title {
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__modern-era-section h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-resources-cockfighting-culture-history__text-block--light {
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__video-section {
    padding: 60px 0;
    background-color: var(--background-color-body);
    color: var(--text-color-light);
    text-align: center;
}

.page-resources-cockfighting-culture-history__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-cockfighting-culture-history__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.page-resources-cockfighting-culture-history__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Ensure link is clickable over video */
}

.page-resources-cockfighting-culture-history__video-caption {
    font-style: italic;
    color: var(--text-color-light);
    font-size: 1em;
}

.page-resources-cockfighting-culture-history__faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-resources-cockfighting-culture-history__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-resources-cockfighting-culture-history__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-cockfighting-culture-history__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.page-resources-cockfighting-culture-history__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-cockfighting-culture-history__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1.2em;
}

.page-resources-cockfighting-culture-history__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-cockfighting-culture-history__faq-item.active .page-resources-cockfighting-culture-history__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-cockfighting-culture-history__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__faq-item.active .page-resources-cockfighting-culture-history__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 25px 25px;
}

.page-resources-cockfighting-culture-history__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__cta-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-cockfighting-culture-history__cta-container {
    max-width: 900px;
}

.page-resources-cockfighting-culture-history__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.page-resources-cockfighting-culture-history__btn-primary {
    display: inline-block;
    background-color: var(--login-color);
    color: var(--secondary-color);
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-cockfighting-culture-history__btn-primary:hover {
    background-color: darken(var(--login-color), 10%);
}

/* Ensure all links inside content sections are visible */
.page-resources-cockfighting-culture-history a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-cockfighting-culture-history__breeds-section a {
    color: var(--primary-color);
}

.page-resources-cockfighting-culture-history a:hover {
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-cockfighting-culture-history__hero-title {
        font-size: 2.8em;
    }
    .page-resources-cockfighting-culture-history__hero-description {
        font-size: 1.1em;
    }
    .page-resources-cockfighting-culture-history__section-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-culture-history__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-cockfighting-culture-history {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-cockfighting-culture-history__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-cockfighting-culture-history__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-resources-cockfighting-culture-history__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-resources-cockfighting-culture-history__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-cockfighting-culture-history__section {
        padding: 40px 0;
    }
    .page-resources-cockfighting-culture-history__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-cockfighting-culture-history__introduction-section h3,
    .page-resources-cockfighting-culture-history__rules-section h3,
    .page-resources-cockfighting-culture-history__breeds-section h3,
    .page-resources-cockfighting-culture-history__modern-era-section h3 {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-culture-history__card-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-cockfighting-culture-history__card {
        padding: 20px;
    }
    .page-resources-cockfighting-culture-history__card-image {
        height: 200px;
    }
    .page-resources-cockfighting-culture-history__video-wrapper {
        padding-bottom: 75%; /* Adjust for mobile aspect ratio if needed, or keep 16:9 */
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }
    .page-resources-cockfighting-culture-history__video-section .page-resources-cockfighting-culture-history__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-cockfighting-culture-history__video,
    .page-resources-cockfighting-culture-history__video-link {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-cockfighting-culture-history__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-cockfighting-culture-history__faq-question h3 {
        font-size: 1.1em;
    }
    .page-resources-cockfighting-culture-history__faq-answer {
        padding: 0 20px;
    }
    .page-resources-cockfighting-culture-history__faq-item.active .page-resources-cockfighting-culture-history__faq-answer {
        padding: 15px 20px 20px;
    }
    .page-resources-cockfighting-culture-history__cta-description {
        font-size: 1.1em;
    }
    .page-resources-cockfighting-culture-history__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* General mobile image handling */
    .page-resources-cockfighting-culture-history img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-cockfighting-culture-history__section,
    .page-resources-cockfighting-culture-history__card,
    .page-resources-cockfighting-culture-history__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-cockfighting-culture-history__video-section {
        padding-top: var(--header-offset, 120px) !important; 
    }
}

/* Color contrast fixes based on body background #1a1a2e (dark) */
.page-resources-cockfighting-culture-history p,
.page-resources-cockfighting-culture-history li,
.page-resources-cockfighting-culture-history a {
    color: var(--text-color-light); /* Ensure light text on dark background */
}

/* Specific light background sections */
.page-resources-cockfighting-culture-history__breeds-section {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}
.page-resources-cockfighting-culture-history__breeds-section p,
.page-resources-cockfighting-culture-history__breeds-section h3,
.page-resources-cockfighting-culture-history__breeds-section .page-resources-cockfighting-culture-history__card-title,
.page-resources-cockfighting-culture-history__breeds-section .page-resources-cockfighting-culture-history__card p {
    color: var(--text-color-dark);
}
.page-resources-cockfighting-culture-history__breeds-section .page-resources-cockfighting-culture-history__section-title {
    color: var(--primary-color);
}

/* Ensure image colors are not altered by filters */
.page-resources-cockfighting-culture-history img {
    filter: none; /* Explicitly ensure no filters are applied */
}

.page-resources-cockfighting-culture-history__video {
    filter: none; /* Explicitly ensure no filters are applied */
}