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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-text-color: #333333;
    --light-text-color: #ffffff;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
    --login-button-color: #EA7C07;
}

.page-cockfighting-culture-history {
    color: var(--light-text-color); /* Body background is dark #1a1a1a, so use light text */
    background-color: var(--background-dark); /* Ensure main content background matches body for consistency */
}

.page-cockfighting-culture-history__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    box-sizing: border-box;
}

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

.page-cockfighting-culture-history__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-cockfighting-culture-history__hero-title {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-cockfighting-culture-history__hero-description {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-cockfighting-culture-history__btn-primary {
    display: inline-block;
    background-color: var(--primary-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, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-cockfighting-culture-history__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%); /* Darken on hover */
    transform: translateY(-2px);
}

.page-cockfighting-culture-history__video-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
    text-align: center;
}

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

.page-cockfighting-culture-history__section-title {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-cockfighting-culture-history__section-description {
    font-size: 1.2em;
    color: var(--light-text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-culture-history__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting-culture-history__btn-video-cta {
    margin-top: 20px;
}

.page-cockfighting-culture-history__content-area {
    padding: 80px 20px;
    background-color: var(--background-dark);
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__dark-bg {
    background-color: #1a1a1a; /* Explicitly dark background for contrast */
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__sub-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-cockfighting-culture-history__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__paragraph a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-cockfighting-culture-history__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-cockfighting-culture-history__list-item {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__list-item strong {
    color: var(--primary-color);
}

.page-cockfighting-culture-history__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-culture-history__faq-section {
    padding: 80px 20px;
    background-color: #0d0d0d; /* Slightly different dark background for FAQ */
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__faq-list {
    margin-top: 40px;
}

.page-cockfighting-culture-history__faq-item {
    background: rgba(255, 255, 255, 0.08); /* Semi-transparent light background for contrast */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-cockfighting-culture-history__faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
}

.page-cockfighting-culture-history__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.page-cockfighting-culture-history__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--light-text-color);
}

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

.page-cockfighting-culture-history__faq-answer p {
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.page-cockfighting-culture-history__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-culture-history__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-culture-history__hero-description {
        font-size: 1.2em;
    }
    .page-cockfighting-culture-history__section-title {
        font-size: 2.2em;
    }
    .page-cockfighting-culture-history__sub-title {
        font-size: 1.7em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-culture-history__hero-section {
        height: auto;
        min-height: 600px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-cockfighting-culture-history__hero-content {
        padding: 15px;
        max-width: 95%;
    }
    .page-cockfighting-culture-history__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-cockfighting-culture-history__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-cockfighting-culture-history__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-cockfighting-culture-history__video-section, 
    .page-cockfighting-culture-history__content-area, 
    .page-cockfighting-culture-history__faq-section {
        padding: 40px 15px;
    }
    .page-cockfighting-culture-history__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-cockfighting-culture-history__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-cockfighting-culture-history__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-cockfighting-culture-history__paragraph, 
    .page-cockfighting-culture-history__list-item, 
    .page-cockfighting-culture-history__faq-answer p {
        font-size: 0.95em;
        line-height: 1.7;
    }
    .page-cockfighting-culture-history__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-cockfighting-culture-history__faq-item.active .page-cockfighting-culture-history__faq-answer {
        padding: 10px 15px;
    }

    /* Mobile image responsiveness */
    .page-cockfighting-culture-history img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting-culture-history__hero-image {
        height: 100%;
    }
    
    /* Mobile video responsiveness */
    .page-cockfighting-culture-history video,
    .page-cockfighting-culture-history__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting-culture-history__video-section,
    .page-cockfighting-culture-history__video-container,
    .page-cockfighting-culture-history__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Button responsiveness */
    .page-cockfighting-culture-history__cta-button,
    .page-cockfighting-culture-history__btn-primary,
    .page-cockfighting-culture-history__btn-secondary,
    .page-cockfighting-culture-history a[class*="button"],
    .page-cockfighting-culture-history a[class*="btn"] {
        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;
    }
    .page-cockfighting-culture-history__cta-buttons,
    .page-cockfighting-culture-history__button-group,
    .page-cockfighting-culture-history__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-cockfighting-culture-history__cta-buttons {
        display: flex;
        flex-direction: column; 
    }
}

@media (max-width: 480px) {
    .page-cockfighting-culture-history__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-culture-history__section-title {
        font-size: 1.6em;
    }
    .page-cockfighting-culture-history__sub-title {
        font-size: 1.2em;
    }
    .page-cockfighting-culture-history__faq-question h3 {
        font-size: 1em;
    }
    .page-cockfighting-culture-history__faq-toggle {
        font-size: 1.2em;
    }
}