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

/* Base styles for the page content area */
.page-cockfighting-culture-asian-history {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #ffffff; /* Explicitly set for clarity, though shared might define body */
}

.page-cockfighting-culture-asian-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cockfighting-culture-asian-history__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-cockfighting-culture-asian-history__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-cockfighting-culture-asian-history__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-cockfighting-culture-asian-history__paragraph a {
    color: #017439;
    text-decoration: underline;
}

/* Hero Section */
.page-cockfighting-culture-asian-history__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

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

.page-cockfighting-culture-asian-history__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-cockfighting-culture-asian-history__hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.page-cockfighting-culture-asian-history__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-cockfighting-culture-asian-history__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* CTA Button */
.page-cockfighting-culture-asian-history__cta-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-cockfighting-culture-asian-history__cta-button:hover {
    background-color: #a00606;
}

/* Introduction Section */
.page-cockfighting-culture-asian-history__introduction-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Origins Section (Dark background) */
.page-cockfighting-culture-asian-history__origins-section {
    padding: 60px 0;
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__origins-section .page-cockfighting-culture-asian-history__section-title,
.page-cockfighting-culture-asian-history__origins-section .page-cockfighting-culture-asian-history__sub-title,
.page-cockfighting-culture-asian-history__origins-section .page-cockfighting-culture-asian-history__paragraph {
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__origins-section .page-cockfighting-culture-asian-history__paragraph a {
    color: #FFFF00; /* Yellow for links on dark background */
}

/* Cultural Section */
.page-cockfighting-culture-asian-history__cultural-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Content Grid for text and image alignment */
.page-cockfighting-culture-asian-history__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-cockfighting-culture-asian-history__content-grid.--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting-culture-asian-history__text-block {
    flex: 1;
}

.page-cockfighting-culture-asian-history__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting-culture-asian-history__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it behaves as a block element */
}

/* Regional Section (Dark background) */
.page-cockfighting-culture-asian-history__regional-section {
    padding: 60px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__regional-section .page-cockfighting-culture-asian-history__section-title,
.page-cockfighting-culture-asian-history__regional-section .page-cockfighting-culture-asian-history__paragraph {
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__regional-section .page-cockfighting-culture-asian-history__paragraph a {
    color: #FFFF00;
}

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

.page-cockfighting-culture-asian-history__card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-cockfighting-culture-asian-history__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-culture-asian-history__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting-culture-asian-history__card-text {
    font-size: 1em;
    color: #555555;
}

.page-cockfighting-culture-asian-history__card-text a {
    color: #017439;
    text-decoration: underline;
}

/* Evolution Section */
.page-cockfighting-culture-asian-history__evolution-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Technology Impact Section (Dark background) */
.page-cockfighting-culture-asian-history__technology-impact-section {
    padding: 60px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__technology-impact-section .page-cockfighting-culture-asian-history__section-title,
.page-cockfighting-culture-asian-history__technology-impact-section .page-cockfighting-culture-asian-history__sub-title,
.page-cockfighting-culture-asian-history__technology-impact-section .page-cockfighting-culture-asian-history__paragraph {
    color: #ffffff;
}

.page-cockfighting-culture-asian-history__technology-impact-section .page-cockfighting-culture-asian-history__paragraph a {
    color: #FFFF00;
}

.page-cockfighting-culture-asian-history__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-cockfighting-culture-asian-history__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-cockfighting-culture-asian-history__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-cockfighting-culture-asian-history__cta-section .page-cockfighting-culture-asian-history__section-title {
    color: #017439;
}

.page-cockfighting-culture-asian-history__cta-section .page-cockfighting-culture-asian-history__paragraph {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333333;
}

.page-cockfighting-culture-asian-history__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-cockfighting-culture-asian-history__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
}

.page-cockfighting-culture-asian-history__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-cockfighting-culture-asian-history__btn-secondary:hover {
    background-color: #e0e0e0;
}

/* FAQ Section */
.page-cockfighting-culture-asian-history__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-cockfighting-culture-asian-history__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-cockfighting-culture-asian-history__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-cockfighting-culture-asian-history__faq-question:hover {
    background-color: #f5f5f5;
}

.page-cockfighting-culture-asian-history__faq-title {
    font-size: 1.2em;
    color: #017439;
    margin: 0;
    font-weight: bold;
}

.page-cockfighting-culture-asian-history__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    transition: transform 0.3s ease;
}

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

.page-cockfighting-culture-asian-history__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px; /* Use padding for left/right */
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-cockfighting-culture-asian-history__faq-item.active .page-cockfighting-culture-asian-history__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 30px; /* Adjust top/bottom padding when active */
}

.page-cockfighting-culture-asian-history__faq-answer .page-cockfighting-culture-asian-history__paragraph {
    margin-bottom: 0;
    color: #555555;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-culture-asian-history__hero-title {
        font-size: 3em;
    }
    .page-cockfighting-culture-asian-history__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting-culture-asian-history__section-title {
        font-size: 2em;
    }
    .page-cockfighting-culture-asian-history__sub-title {
        font-size: 1.5em;
    }
    .page-cockfighting-culture-asian-history__content-grid {
        flex-direction: column;
    }
    .page-cockfighting-culture-asian-history__content-grid.--reverse {
        flex-direction: column; /* Reset to column for mobile */
    }
    .page-cockfighting-culture-asian-history__cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-culture-asian-history {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-cockfighting-culture-asian-history__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is correct */
    }
    .page-cockfighting-culture-asian-history__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting-culture-asian-history__hero-description {
        font-size: 1em;
    }
    .page-cockfighting-culture-asian-history__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-cockfighting-culture-asian-history__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-cockfighting-culture-asian-history__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-cockfighting-culture-asian-history__sub-title {
        font-size: 1.3em;
    }
    .page-cockfighting-culture-asian-history__container {
        padding: 0 15px; /* Adjust container padding for mobile */
    }

    /* Images responsiveness */
    .page-cockfighting-culture-asian-history img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting-culture-asian-history__image-wrapper,
    .page-cockfighting-culture-asian-history__card-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    /* Ensure no filter on images */
    .page-cockfighting-culture-asian-history img {
        filter: none !important;
    }

    /* FAQ adjustments */
    .page-cockfighting-culture-asian-history__faq-question {
        padding: 15px 20px;
    }
    .page-cockfighting-culture-asian-history__faq-answer {
        padding: 0 20px;
    }
    .page-cockfighting-culture-asian-history__faq-item.active .page-cockfighting-culture-asian-history__faq-answer {
        padding: 15px 20px;
    }
    
    /* Ensure content sections also handle overflow and padding */
    .page-cockfighting-culture-asian-history__introduction-section,
    .page-cockfighting-culture-asian-history__origins-section,
    .page-cockfighting-culture-asian-history__cultural-section,
    .page-cockfighting-culture-asian-history__regional-section,
    .page-cockfighting-culture-asian-history__evolution-section,
    .page-cockfighting-culture-asian-history__technology-impact-section,
    .page-cockfighting-culture-asian-history__cta-section,
    .page-cockfighting-culture-asian-history__faq-section {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
}