/* style/thomo-cockfighting-culture.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --background-color: #0a0a0a;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --register-button-bg: #C30808;
    --login-button-bg: #C30808;
    --button-text-color: #FFFF00;
}

.page-thomo-cockfighting-culture {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    background-color: var(--background-color); /* Matches body background */
}

.page-thomo-cockfighting-culture__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
}

.page-thomo-cockfighting-culture__hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

.page-thomo-cockfighting-culture__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-thomo-cockfighting-culture__hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-thomo-cockfighting-culture__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-thomo-cockfighting-culture__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 20px;
    z-index: 2;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-thomo-cockfighting-culture__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-thomo-cockfighting-culture__btn-primary,
.page-thomo-cockfighting-culture__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-thomo-cockfighting-culture__btn-primary {
    background-color: var(--register-button-bg);
    color: var(--button-text-color);
    border: 2px solid var(--register-button-bg);
}

.page-thomo-cockfighting-culture__btn-primary:hover {
    background-color: darken(var(--register-button-bg), 10%);
    transform: translateY(-2px);
}

.page-thomo-cockfighting-culture__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-thomo-cockfighting-culture__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-thomo-cockfighting-culture__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-thomo-cockfighting-culture__section {
    padding: 60px 20px;
    text-align: center;
}

.page-thomo-cockfighting-culture__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__light-bg .page-thomo-cockfighting-culture__section-title,
.page-thomo-cockfighting-culture__light-bg .page-thomo-cockfighting-culture__sub-title {
    color: var(--text-color-light-bg);
}

.page-thomo-cockfighting-culture__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-thomo-cockfighting-culture__grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-thomo-cockfighting-culture__grid-container--reverse {
    direction: rtl; /* For visual reversal without changing DOM order */
}

.page-thomo-cockfighting-culture__grid-container--reverse .page-thomo-cockfighting-culture__grid-item {
    direction: ltr; /* Reset text direction */
}

.page-thomo-cockfighting-culture__grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-thomo-cockfighting-culture__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__light-bg .page-thomo-cockfighting-culture__text-block {
    color: var(--text-color-light-bg);
}

.page-thomo-cockfighting-culture__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-thomo-cockfighting-culture__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__cta-buttons--inline {
    margin-top: 30px;
    justify-content: flex-start;
}

.page-thomo-cockfighting-culture__cta-buttons--inline .page-thomo-cockfighting-culture__btn-primary,
.page-thomo-cockfighting-culture__cta-buttons--inline .page-thomo-cockfighting-culture__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
}

.page-thomo-cockfighting-culture__faq-section {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
}

.page-thomo-cockfighting-culture__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-thomo-cockfighting-culture__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-thomo-cockfighting-culture__faq-item[open] {
    background-color: #e6e6e6;
}

.page-thomo-cockfighting-culture__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-color-light-bg);
    list-style: none;
}

.page-thomo-cockfighting-culture__faq-question::-webkit-details-marker {
    display: none;
}

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

.page-thomo-cockfighting-culture__faq-item[open] .page-thomo-cockfighting-culture__faq-toggle {
    transform: rotate(45deg);
}

.page-thomo-cockfighting-culture__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.1em;
    color: var(--text-color-light-bg);
}

.page-thomo-cockfighting-culture__cta-banner {
    padding: 80px 20px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-thomo-cockfighting-culture__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
}

.page-thomo-cockfighting-culture__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--text-color-dark-bg);
}

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

.page-thomo-cockfighting-culture__light-bg a {
    color: var(--primary-color);
}

.page-thomo-cockfighting-culture__dark-bg a {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-thomo-cockfighting-culture__main-title {
        font-size: 2.8em;
    }
    .page-thomo-cockfighting-culture__section-title {
        font-size: 2.2em;
    }
    .page-thomo-cockfighting-culture__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-thomo-cockfighting-culture {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-thomo-cockfighting-culture__hero-section {
        min-height: 60vh;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-thomo-cockfighting-culture__main-title {
        font-size: 2.2em;
    }
    .page-thomo-cockfighting-culture__intro-text {
        font-size: 1em;
    }
    .page-thomo-cockfighting-culture__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    .page-thomo-cockfighting-culture__btn-primary,
    .page-thomo-cockfighting-culture__btn-secondary,
    .page-thomo-cockfighting-culture a[class*="button"],
    .page-thomo-cockfighting-culture 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-thomo-cockfighting-culture__cta-buttons--inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-thomo-cockfighting-culture__section {
        padding: 40px 15px;
    }
    .page-thomo-cockfighting-culture__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-thomo-cockfighting-culture__grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr; /* Reset for mobile */
    }
    .page-thomo-cockfighting-culture__grid-container--reverse .page-thomo-cockfighting-culture__grid-item:first-child {
        order: 2;
    }
    .page-thomo-cockfighting-culture__grid-container--reverse .page-thomo-cockfighting-culture__grid-item:last-child {
        order: 1;
    }
    .page-thomo-cockfighting-culture__image,
    .page-thomo-cockfighting-culture video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-thomo-cockfighting-culture__grid-item,
    .page-thomo-cockfighting-culture__video-wrapper,
    .page-thomo-cockfighting-culture__hero-video-wrapper,
    .page-thomo-cockfighting-culture__section,
    .page-thomo-cockfighting-culture__cta-banner,
    .page-thomo-cockfighting-culture__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-thomo-cockfighting-culture__hero-video-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .page-thomo-cockfighting-culture__cta-title {
        font-size: 2em;
    }
    .page-thomo-cockfighting-culture__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-thomo-cockfighting-culture__main-title {
        font-size: 1.8em;
    }
    .page-thomo-cockfighting-culture__section-title {
        font-size: 1.6em;
    }
    .page-thomo-cockfighting-culture__cta-title {
        font-size: 1.8em;
    }
    .page-thomo-cockfighting-culture__btn-primary--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}