/* style/resources-cockfighting-betting-guide.css */

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

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

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

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

.page-resources-cockfighting-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-resources-cockfighting-betting-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-cockfighting-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-resources-cockfighting-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-guide__btn-primary {
    display: inline-block;
    background-color: var(--login-button-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-resources-cockfighting-betting-guide__btn-primary:hover {
    background-color: darken(var(--login-button-color), 10%);
    transform: translateY(-2px);
}

.page-resources-cockfighting-betting-guide__content-section {
    padding: 60px 20px;
}

.page-resources-cockfighting-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.page-resources-cockfighting-betting-guide__light-bg {
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
}

.page-resources-cockfighting-betting-guide__dark-bg {
    background-color: var(--dark-section-bg);
    color: var(--text-color-light);
}

.page-resources-cockfighting-betting-guide__text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.page-resources-cockfighting-betting-guide__text-block--white-text p,
.page-resources-cockfighting-betting-guide__text-block--white-text ul,
.page-resources-cockfighting-betting-guide__text-block--white-text h3 {
    color: var(--text-color-light);
}

.page-resources-cockfighting-betting-guide__text-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-cockfighting-betting-guide__text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-resources-cockfighting-betting-guide__text-block--white-text a {
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-guide__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.page-resources-cockfighting-betting-guide__text-block--white-text .page-resources-cockfighting-betting-guide__sub-title {
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-guide__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-cockfighting-betting-guide__list li {
    margin-bottom: 10px;
}

.page-resources-cockfighting-betting-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-resources-cockfighting-betting-guide__faq-section {
    padding: 60px 20px;
    background-color: var(--dark-section-bg);
    color: var(--text-color-light);
}

.page-resources-cockfighting-betting-guide__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
}

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

.page-resources-cockfighting-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-color-light);
    transition: background-color 0.3s ease;
}

.page-resources-cockfighting-betting-guide__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-cockfighting-betting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-color-light);
}

.page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large for content */
    padding: 15px 25px 25px;
}

.page-resources-cockfighting-betting-guide__faq-answer p {
    margin-bottom: 10px;
}

.page-resources-cockfighting-betting-guide__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-cockfighting-betting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-cockfighting-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-betting-guide__sub-title {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-betting-guide__text-block p,
    .page-resources-cockfighting-betting-guide__list li,
    .page-resources-cockfighting-betting-guide__faq-question {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-resources-cockfighting-betting-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-cockfighting-betting-guide__hero-section {
        padding: 80px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-cockfighting-betting-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-cockfighting-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-cockfighting-betting-guide__btn-primary {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-cockfighting-betting-guide__content-section {
        padding: 40px 15px;
    }
    .page-resources-cockfighting-betting-guide__container {
        gap: 30px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-cockfighting-betting-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-resources-cockfighting-betting-guide__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-resources-cockfighting-betting-guide__text-block p,
    .page-resources-cockfighting-betting-guide__list li {
        font-size: 1em;
    }
    .page-resources-cockfighting-betting-guide__content-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        min-width: 200px; /* Ensure minimum size is still respected */
        min-height: 200px; /* Ensure minimum size is still respected */
    }
    .page-resources-cockfighting-betting-guide__faq-section {
        padding: 40px 15px;
    }
    .page-resources-cockfighting-betting-guide__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-resources-cockfighting-betting-guide__faq-answer {
        padding: 0 20px;
    }
    .page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-answer {
        padding: 10px 20px 20px;
    }
    /* Ensure all image containers also respond */
    .page-resources-cockfighting-betting-guide__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-cockfighting-betting-guide__text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-cockfighting-betting-guide__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-cockfighting-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-cockfighting-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-betting-guide__sub-title {
        font-size: 1.2em;
    }
    .page-resources-cockfighting-betting-guide__btn-primary {
        padding: 10px 20px;
        font-size: 0.85em;
    }
    .page-resources-cockfighting-betting-guide__faq-question {
        font-size: 1em;
    }
}