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

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-login-bg: #C30808;
    --register-login-font: #FFFF00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
}

.page-resources-thomo-cockfighting-live-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.page-resources-thomo-cockfighting-live-guide__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
}

.page-resources-thomo-cockfighting-live-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-resources-thomo-cockfighting-live-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-resources-thomo-cockfighting-live-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

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

.page-resources-thomo-cockfighting-live-guide__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

.page-resources-thomo-cockfighting-live-guide__btn-primary,
.page-resources-thomo-cockfighting-live-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-resources-thomo-cockfighting-live-guide__btn-primary {
    background-color: var(--register-login-bg);
    color: var(--register-login-font);
    border: 2px solid var(--register-login-bg);
}

.page-resources-thomo-cockfighting-live-guide__btn-primary:hover {
    background-color: darken(var(--register-login-bg), 10%);
    color: var(--secondary-color);
}

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

.page-resources-thomo-cockfighting-live-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-thomo-cockfighting-live-guide__content-section {
    padding: 80px 20px;
}

.page-resources-thomo-cockfighting-live-guide__container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-resources-thomo-cockfighting-live-guide__dark-bg .page-resources-thomo-cockfighting-live-guide__section-title {
    color: var(--text-light);
}

.page-resources-thomo-cockfighting-live-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-thomo-cockfighting-live-guide__dark-bg .page-resources-thomo-cockfighting-live-guide__paragraph {
    color: var(--text-light);
}

.page-resources-thomo-cockfighting-live-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-thomo-cockfighting-live-guide__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-thomo-cockfighting-live-guide__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-resources-thomo-cockfighting-live-guide__faq-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-thomo-cockfighting-live-guide__faq-list {
    margin-top: 40px;
}

.page-resources-thomo-cockfighting-live-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-resources-thomo-cockfighting-live-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-resources-thomo-cockfighting-live-guide__faq-toggle {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-resources-thomo-cockfighting-live-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.05em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-thomo-cockfighting-live-guide__main-title {
        font-size: 3em;
    }
    .page-resources-thomo-cockfighting-live-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-thomo-cockfighting-live-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-thomo-cockfighting-live-guide__hero-section {
        min-height: 500px;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-thomo-cockfighting-live-guide__hero-content {
        padding: 15px;
    }
    .page-resources-thomo-cockfighting-live-guide__main-title {
        font-size: 2.2em;
    }
    .page-resources-thomo-cockfighting-live-guide__intro-text {
        font-size: 1em;
    }
    .page-resources-thomo-cockfighting-live-guide__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-resources-thomo-cockfighting-live-guide__btn-primary,
    .page-resources-thomo-cockfighting-live-guide__btn-secondary {
        padding: 12px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-thomo-cockfighting-live-guide__content-section,
    .page-resources-thomo-cockfighting-live-guide__faq-section {
        padding: 40px 15px;
    }
    .page-resources-thomo-cockfighting-live-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-resources-thomo-cockfighting-live-guide__paragraph {
        font-size: 1em;
    }
    .page-resources-thomo-cockfighting-live-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-resources-thomo-cockfighting-live-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-resources-thomo-cockfighting-live-guide__faq-item summary {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-thomo-cockfighting-live-guide__faq-answer {
        padding: 0 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-thomo-cockfighting-live-guide__main-title {
        font-size: 1.8em;
    }
    .page-resources-thomo-cockfighting-live-guide__intro-text {
        font-size: 0.9em;
    }
    .page-resources-thomo-cockfighting-live-guide__section-title {
        font-size: 1.5em;
    }
}