/* style/resources-thomo-c1-betting-tips.css */

/* Base styles for the page content */
.page-resources-thomo-c1-betting-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--background-color, #ffffff); /* Use shared background variable */
}

.page-resources-thomo-c1-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-thomo-c1-betting-tips__heading {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-thomo-c1-betting-tips__sub-heading {
    font-size: 1.8em;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-thomo-c1-betting-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333; /* Ensure contrast */
}

.page-resources-thomo-c1-betting-tips__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333; /* Ensure contrast */
}

.page-resources-thomo-c1-betting-tips__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Color contrast classes */
.page-resources-thomo-c1-betting-tips__dark-bg {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff; /* White text for dark background */
}

.page-resources-thomo-c1-betting-tips__dark-bg .page-resources-thomo-c1-betting-tips__heading,
.page-resources-thomo-c1-betting-tips__dark-bg .page-resources-thomo-c1-betting-tips__sub-heading {
    color: #ffffff;
}

.page-resources-thomo-c1-betting-tips__dark-bg .page-resources-thomo-c1-betting-tips__paragraph,
.page-resources-thomo-c1-betting-tips__dark-bg .page-resources-thomo-c1-betting-tips__list-item {
    color: #f0f0f0; /* Slightly off-white for readability */
}

.page-resources-thomo-c1-betting-tips__light-bg {
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text for light background */
}

/* Buttons */
.page-resources-thomo-c1-betting-tips__btn-primary,
.page-resources-thomo-c1-betting-tips__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-thomo-c1-betting-tips__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-thomo-c1-betting-tips__btn-primary:hover {
    background-color: #1a8cc4; /* Slightly darker blue */
    border-color: #1a8cc4;
}

.page-resources-thomo-c1-betting-tips__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-thomo-c1-betting-tips__btn-secondary:hover {
    background-color: #f0f8ff; /* Light blue hover */
    color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-resources-thomo-c1-betting-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hero Section */
.page-resources-thomo-c1-betting-tips__hero-section {
    position: relative;
    padding: var(--header-offset, 120px) 0 80px; /* Add header offset here for the first content section */
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-resources-thomo-c1-betting-tips__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-thomo-c1-betting-tips__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-thomo-c1-betting-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

.page-resources-thomo-c1-betting-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-thomo-c1-betting-tips__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Content Grid for sections with image and text */
.page-resources-thomo-c1-betting-tips__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources-thomo-c1-betting-tips__content-grid--reverse .page-resources-thomo-c1-betting-tips__image-wrapper {
    order: 2; /* Image on right */
}

.page-resources-thomo-c1-betting-tips__content-grid--reverse .page-resources-thomo-c1-betting-tips__text-block {
    order: 1; /* Text on left */
}

.page-resources-thomo-c1-betting-tips__image-wrapper {
    text-align: center;
}

.page-resources-thomo-c1-betting-tips__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Feature Cards */
.page-resources-thomo-c1-betting-tips__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-thomo-c1-betting-tips__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333; /* Ensure contrast */
}

.page-resources-thomo-c1-betting-tips__feature-card:hover {
    transform: translateY(-5px);
}

.page-resources-thomo-c1-betting-tips__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-thomo-c1-betting-tips__card-description {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section */
.page-resources-thomo-c1-betting-tips__faq-section {
    padding: 60px 0;
}

.page-resources-thomo-c1-betting-tips__faq-list {
    margin-top: 40px;
}

.page-resources-thomo-c1-betting-tips__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-thomo-c1-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    transition: background-color 0.3s ease;
}

.page-resources-thomo-c1-betting-tips__faq-question:hover {
    background-color: #e5e5e5;
}

.page-resources-thomo-c1-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-resources-thomo-c1-betting-tips__faq-item.active .page-resources-thomo-c1-betting-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-thomo-c1-betting-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555555;
}

.page-resources-thomo-c1-betting-tips__faq-item.active .page-resources-thomo-c1-betting-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 20px !important; /* Ensure padding is applied when active */
}

.page-resources-thomo-c1-betting-tips__faq-answer p {
    margin: 0;
    padding-bottom: 15px; /* Add some spacing to the paragraph inside answer */
}

/* CTA Bottom Section */
.page-resources-thomo-c1-betting-tips__cta-bottom {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-thomo-c1-betting-tips__hero-title {
        font-size: 3em;
    }
    .page-resources-thomo-c1-betting-tips__hero-description {
        font-size: 1.3em;
    }
    .page-resources-thomo-c1-betting-tips__heading {
        font-size: 2em;
    }
    .page-resources-thomo-c1-betting-tips__sub-heading {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-thomo-c1-betting-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-thomo-c1-betting-tips__hero-section {
        min-height: 500px;
        padding: var(--header-offset, 120px) 0 60px; /* Adjust padding for mobile */
    }
    .page-resources-thomo-c1-betting-tips__hero-title {
        font-size: 2.2em;
    }
    .page-resources-thomo-c1-betting-tips__hero-description {
        font-size: 1.1em;
    }
    .page-resources-thomo-c1-betting-tips__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-thomo-c1-betting-tips__sub-heading {
        font-size: 1.4em;
    }
    .page-resources-thomo-c1-betting-tips__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-resources-thomo-c1-betting-tips__content-grid--reverse .page-resources-thomo-c1-betting-tips__image-wrapper {
        order: initial; /* Reset order for mobile */
    }
    .page-resources-thomo-c1-betting-tips__content-grid--reverse .page-resources-thomo-c1-betting-tips__text-block {
        order: initial; /* Reset order for mobile */
    }
    .page-resources-thomo-c1-betting-tips__features-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-thomo-c1-betting-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-thomo-c1-betting-tips__btn-primary,
    .page-resources-thomo-c1-betting-tips__btn-secondary {
        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;
    }

    /* Images and Video responsiveness */
    .page-resources-thomo-c1-betting-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-thomo-c1-betting-tips__section,
    .page-resources-thomo-c1-betting-tips__card,
    .page-resources-thomo-c1-betting-tips__container,
    .page-resources-thomo-c1-betting-tips__image-wrapper,
    .page-resources-thomo-c1-betting-tips__video-section,
    .page-resources-thomo-c1-betting-tips__video-container,
    .page-resources-thomo-c1-betting-tips__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources-thomo-c1-betting-tips__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .page-resources-thomo-c1-betting-tips__hero-content {
        padding: 0 15px; /* Adjust padding for hero content on mobile */
    }

    .page-resources-thomo-c1-betting-tips__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-thomo-c1-betting-tips__faq-answer {
        padding: 0 15px;
    }
    .page-resources-thomo-c1-betting-tips__faq-item.active .page-resources-thomo-c1-betting-tips__faq-answer {
        padding: 15px !important;
    }
}