/* style/thomo-cockfighting-live.css */

/* Base Styles */
.page-thomo-cockfighting-live {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-thomo-cockfighting-live__container--center {
    text-align: center;
}

.page-thomo-cockfighting-live__section {
    padding: 80px 0;
}

.page-thomo-cockfighting-live__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-thomo-cockfighting-live__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-thomo-cockfighting-live__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    color: inherit;
    font-weight: bold;
}

.page-thomo-cockfighting-live__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: inherit;
}

.page-thomo-cockfighting-live__subsection-title {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: inherit;
}

.page-thomo-cockfighting-live__paragraph {
    margin-bottom: 15px;
    color: inherit;
}

.page-thomo-cockfighting-live__paragraph--center {
    text-align: center;
}

.page-thomo-cockfighting-live__text-link {
    color: #017439; /* Brand color for links */
    text-decoration: underline;
}

.page-thomo-cockfighting-live__text-link:hover {
    color: #005f2e;
}

/* Buttons */
.page-thomo-cockfighting-live__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-thomo-cockfighting-live__btn-primary,
.page-thomo-cockfighting-live__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, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-thomo-cockfighting-live__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-thomo-cockfighting-live__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-thomo-cockfighting-live__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-thomo-cockfighting-live__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Hero Section */
.page-thomo-cockfighting-live__hero-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-thomo-cockfighting-live__hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.page-thomo-cockfighting-live__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-live__hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
    z-index: 2;
}

.page-thomo-cockfighting-live__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-thomo-cockfighting-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* Grid Layouts */
.page-thomo-cockfighting-live__grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-thomo-cockfighting-live__grid-two-columns--reversed {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* Reverse order for content and image */
}

.page-thomo-cockfighting-live__grid-two-columns--reversed .page-thomo-cockfighting-live__text-content {
    direction: ltr;
}

.page-thomo-cockfighting-live__grid-two-columns--reversed .page-thomo-cockfighting-live__image-container {
    direction: ltr;
}

.page-thomo-cockfighting-live__text-content {
    text-align: left;
}

.page-thomo-cockfighting-live__image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-thomo-cockfighting-live__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-thomo-cockfighting-live__image-container--full-width {
    margin-top: 40px;
}

/* Lists */
.page-thomo-cockfighting-live__steps-list,
.page-thomo-cockfighting-live__bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-thomo-cockfighting-live__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #017439;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #ffffff;
}

.page-thomo-cockfighting-live__light-bg .page-thomo-cockfighting-live__list-item {
    background-color: #f9f9f9;
    border-left-color: #017439;
    color: #333333;
}

.page-thomo-cockfighting-live__list-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: inherit;
}

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

.page-thomo-cockfighting-live__card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-thomo-cockfighting-live__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-thomo-cockfighting-live__card-title {
    font-size: 1.8em;
    margin: 0 20px 10px 20px;
    color: #017439;
}

.page-thomo-cockfighting-live__card-description {
    font-size: 1em;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-thomo-cockfighting-live__card .page-thomo-cockfighting-live__btn-primary {
    margin-top: auto; /* Push button to bottom */
    align-self: center;
    max-width: calc(100% - 40px);
}

/* FAQ Section */
.page-thomo-cockfighting-live__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-thomo-cockfighting-live__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-thomo-cockfighting-live__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-thomo-cockfighting-live__faq-question:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.page-thomo-cockfighting-live__faq-title {
    margin: 0;
    color: inherit;
}

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

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

.page-thomo-cockfighting-live__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-thomo-cockfighting-live__faq-answer p {
    margin: 0;
    color: inherit;
}

/* CTA Bottom Section */
.page-thomo-cockfighting-live__cta-bottom .page-thomo-cockfighting-live__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-thomo-cockfighting-live__cta-bottom .page-thomo-cockfighting-live__btn-secondary {
    background-color: #017439;
    color: #ffffff;
    border-color: #017439;
}

.page-thomo-cockfighting-live__cta-bottom .page-thomo-cockfighting-live__btn-secondary:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-thomo-cockfighting-live__hero-title {
        font-size: 3em;
    }

    .page-thomo-cockfighting-live__hero-description {
        font-size: 1.1em;
    }

    .page-thomo-cockfighting-live__section-title {
        font-size: 2.2em;
    }

    .page-thomo-cockfighting-live__subsection-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-thomo-cockfighting-live__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        min-height: 500px;
    }

    .page-thomo-cockfighting-live__hero-title {
        font-size: 2.2em;
    }

    .page-thomo-cockfighting-live__hero-description {
        font-size: 1em;
    }

    .page-thomo-cockfighting-live__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-thomo-cockfighting-live__btn-primary,
    .page-thomo-cockfighting-live__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-thomo-cockfighting-live__section {
        padding: 60px 0;
    }

    .page-thomo-cockfighting-live__section-title {
        font-size: 1.8em;
    }

    .page-thomo-cockfighting-live__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-thomo-cockfighting-live__grid-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-thomo-cockfighting-live__grid-two-columns--reversed {
        grid-template-columns: 1fr;
        direction: ltr; /* Reset direction for mobile */
    }

    .page-thomo-cockfighting-live__image-container {
        order: -1; /* Image first on mobile for reversed grid */
    }

    .page-thomo-cockfighting-live__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-thomo-cockfighting-live__card {
        margin: 0 15px;
    }

    .page-thomo-cockfighting-live__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-thomo-cockfighting-live__video-wrapper,
    .page-thomo-cockfighting-live__hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        transform: none !important;
    }
    .page-thomo-cockfighting-live__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    /* Ensure containers for images/videos/buttons adapt */
    .page-thomo-cockfighting-live__section,
    .page-thomo-cockfighting-live__container,
    .page-thomo-cockfighting-live__image-container,
    .page-thomo-cockfighting-live__video-wrapper,
    .page-thomo-cockfighting-live__cta-buttons,
    .page-thomo-cockfighting-live__promo-grid,
    .page-thomo-cockfighting-live__faq-list,
    .page-thomo-cockfighting-live__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-thomo-cockfighting-live__faq-question {
        font-size: 1.1em;
    }
    .page-thomo-cockfighting-live__faq-answer {
        padding: 0 15px;
    }
    .page-thomo-cockfighting-live__faq-item.active .page-thomo-cockfighting-live__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-thomo-cockfighting-live__hero-title {
        font-size: 1.8em;
    }

    .page-thomo-cockfighting-live__hero-description {
        font-size: 0.9em;
    }

    .page-thomo-cockfighting-live__section-title {
        font-size: 1.5em;
    }

    .page-thomo-cockfighting-live__subsection-title {
        font-size: 1.3em;
    }

    .page-thomo-cockfighting-live__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-thomo-cockfighting-live__faq-answer p {
        font-size: 0.9em;
    }
}