/* style/resources-understanding-online-gambling-bonuses.css */

/* Base styles for the page content, ensuring it doesn't get hidden by the header */
.page-resources-understanding-online-gambling-bonuses {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below the fixed header */
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-resources-understanding-online-gambling-bonuses__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Minimum height for hero section */
    background-color: #0A2342; /* Dark blue background for hero */
}

.page-resources-understanding-online-gambling-bonuses__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Slightly dim the image to make text more readable */
}

.page-resources-understanding-online-gambling-bonuses__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff; /* White text for hero content */
    padding: 20px;
    max-width: 900px;
}

.page-resources-understanding-online-gambling-bonuses__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #E5B80B; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-understanding-online-gambling-bonuses__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-understanding-online-gambling-bonuses__hero-button {
    display: inline-block;
    background-color: #E5B80B; /* Gold button */
    color: #0A2342; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-understanding-online-gambling-bonuses__hero-button:hover {
    background-color: #f5d345; /* Lighter gold on hover */
    transform: translateY(-2px);
}

/* Article Content Area */
.page-resources-understanding-online-gambling-bonuses__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

.page-resources-understanding-online-gambling-bonuses__article-wrapper {
    max-width: 800px; /* Content width for comfortable reading */
    margin: 0 auto;
    padding: 20px 0;
}

.page-resources-understanding-online-gambling-bonuses__intro-paragraph {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555555;
}

.page-resources-understanding-online-gambling-bonuses__section-title {
    font-size: 2.2em;
    color: #0A2342; /* Dark blue for main section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E5B80B; /* Gold underline */
    padding-bottom: 10px;
}

.page-resources-understanding-online-gambling-bonuses__sub-section-title {
    font-size: 1.6em;
    color: #0A2342; /* Dark blue for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-understanding-online-gambling-bonuses__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-understanding-online-gambling-bonuses__content-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-resources-understanding-online-gambling-bonuses__cta-section {
    text-align: center;
    background-color: #0A2342; /* Dark blue background */
    padding: 40px;
    margin-top: 50px;
    border-radius: 8px;
    color: #ffffff;
}

.page-resources-understanding-online-gambling-bonuses__cta-text {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-resources-understanding-online-gambling-bonuses__cta-button {
    display: inline-block;
    background-color: #E5B80B; /* Gold button */
    color: #0A2342; /* Dark blue text on gold button */
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-understanding-online-gambling-bonuses__cta-button:hover {
    background-color: #f5d345; /* Lighter gold on hover */
    transform: translateY(-3px);
}

/* Navigation Links */
.page-resources-understanding-online-gambling-bonuses__navigation-links {
    margin-top: 40px;
    text-align: center;
}

.page-resources-understanding-online-gambling-bonuses__back-link {
    display: inline-block;
    color: #0A2342; /* Dark blue link */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #0A2342;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-understanding-online-gambling-bonuses__back-link:hover {
    background-color: #0A2342;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-understanding-online-gambling-bonuses__hero-title {
        font-size: 2.2em;
    }

    .page-resources-understanding-online-gambling-bonuses__hero-description {
        font-size: 1em;
    }

    .page-resources-understanding-online-gambling-bonuses__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-understanding-online-gambling-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-resources-understanding-online-gambling-bonuses__sub-section-title {
        font-size: 1.4em;
    }

    .page-resources-understanding-online-gambling-bonuses__content-area,
    .page-resources-understanding-online-gambling-bonuses__article-wrapper {
        padding: 20px 15px;
    }

    .page-resources-understanding-online-gambling-bonuses__cta-text {
        font-size: 1.2em;
    }

    .page-resources-understanding-online-gambling-bonuses__cta-button {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    /* Ensure content images do not overflow on mobile */
    .page-resources-understanding-online-gambling-bonuses__content-image {
        max-width: 100%;
        height: auto; /* Maintain aspect ratio */
    }
    /* Mobile specific image sizing for all images within the content area */
    .page-resources-understanding-online-gambling-bonuses img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-understanding-online-gambling-bonuses__hero-title {
        font-size: 1.8em;
    }

    .page-resources-understanding-online-gambling-bonuses__hero-description {
        font-size: 0.9em;
    }

    .page-resources-understanding-online-gambling-bonuses__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-understanding-online-gambling-bonuses__section-title {
        font-size: 1.5em;
    }

    .page-resources-understanding-online-gambling-bonuses__sub-section-title {
        font-size: 1.2em;
    }

    .page-resources-understanding-online-gambling-bonuses__cta-text {
        font-size: 1em;
    }

    .page-resources-understanding-online-gambling-bonuses__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}