/* style/promo-welcome-bonus.css */

/* Base styles for the page content, ensuring it's below the fixed header */
.page-promo-welcome-bonus {
    color: #333333; /* Dark text for light body background #F8F8F8 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-promo-welcome-bonus__hero-section {
    position: relative;
    text-align: center;
    color: #ffffff; /* Light text for hero content over potentially dark image */
    padding: 60px 20px; /* Base padding */
    background-color: #0A192F; /* Fallback background for hero */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promo-welcome-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    z-index: 1;
    opacity: 0.8; /* Slightly darken image for text readability */
}

.page-promo-welcome-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-promo-welcome-bonus__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
}

.page-promo-welcome-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-promo-welcome-bonus__hero-button,
.page-promo-welcome-bonus__cta-button,
.page-promo-welcome-bonus__final-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none; /* Ensure no default button border */
    cursor: pointer; /* Indicate it's clickable */
}

.page-promo-welcome-bonus__hero-button:hover,
.page-promo-welcome-bonus__cta-button:hover,
.page-promo-welcome-bonus__final-cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* General Content Sections */
.page-promo-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promo-welcome-bonus__section-title {
    font-size: 2.5em;
    color: #0A192F; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promo-welcome-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 10px auto 0;
}

.page-promo-welcome-bonus__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promo-welcome-bonus__brand-highlight {
    color: #0A192F;
    font-weight: bold;
}

.page-promo-welcome-bonus__inline-link,
.page-promo-welcome-bonus__internal-link {
    color: #0A192F; /* Dark blue for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-promo-welcome-bonus__inline-link:hover,
.page-promo-welcome-bonus__internal-link:hover {
    color: #FFD700; /* Gold on hover */
}

/* Bonus Types Grid */
.page-promo-welcome-bonus__cards-grid,
.page-promo-welcome-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promo-welcome-bonus__card,
.page-promo-welcome-bonus__feature-card {
    background-color: #ffffff; /* White background for cards */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 450px; /* Ensure cards have a minimum height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space evenly */
}

.page-promo-welcome-bonus__card:hover,
.page-promo-welcome-bonus__feature-card:hover {
    transform: translateY(-5px);
}

.page-promo-welcome-bonus__card-image,
.page-promo-welcome-bonus__feature-image {
    width: 100%; /* Ensure image fills card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-promo-welcome-bonus__card-title,
.page-promo-welcome-bonus__feature-title {
    font-size: 1.5em;
    color: #0A192F;
    margin-bottom: 15px;
}

.page-promo-welcome-bonus__card-description,
.page-promo-welcome-bonus__feature-description {
    font-size: 1em;
    color: #555555;
    flex-grow: 1; /* Allow description to take up available space */
}

/* Steps List */
.page-promo-welcome-bonus__steps-list,
.page-promo-welcome-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promo-welcome-bonus__steps-list .page-promo-welcome-bonus__list-item,
.page-promo-welcome-bonus__terms-list .page-promo-welcome-bonus__list-item {
    background-color: #ffffff;
    border-left: 5px solid #FFD700; /* Gold accent */
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promo-welcome-bonus__list-title {
    font-size: 1.3em;
    color: #0A192F;
    margin-bottom: 10px;
}

.page-promo-welcome-bonus__list-description {
    font-size: 1em;
    color: #555555;
}

/* CTA Buttons */
.page-promo-welcome-bonus__cta-button {
    margin-top: 30px;
}

.page-promo-welcome-bonus__cta-button--large {
    font-size: 1.3em;
    padding: 18px 35px;
}

.page-promo-welcome-bonus__final-cta-section {
    text-align: center;
    background-color: #0A192F; /* Dark blue background for final CTA */
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
}

.page-promo-welcome-bonus__final-cta-section .page-promo-welcome-bonus__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-promo-welcome-bonus__final-cta-section .page-promo-welcome-bonus__section-title::after {
    background-color: #ffffff; /* White underline */
}

.page-promo-welcome-bonus__final-cta-section .page-promo-welcome-bonus__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promo-welcome-bonus__final-cta-button {
    margin-top: 20px;
}

.page-promo-welcome-bonus__disclaimer {
    font-size: 0.9em;
    margin-top: 30px;
    color: #cccccc;
}

.page-promo-welcome-bonus__disclaimer .page-promo-welcome-bonus__internal-link {
    color: #FFD700;
}

.page-promo-welcome-bonus__disclaimer .page-promo-welcome-bonus__internal-link:hover {
    color: #ffffff;
}

/* FAQ Section */
.page-promo-welcome-bonus__faq-list {
    margin-top: 30px;
}

.page-promo-welcome-bonus__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    padding: 20px;
}

.page-promo-welcome-bonus__faq-question {
    font-size: 1.2em;
    color: #0A192F;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate interactivity */
    position: relative;
    padding-right: 30px;
}

.page-promo-welcome-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promo-welcome-bonus__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
    padding-top: 0;
}

.page-promo-welcome-bonus__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-promo-welcome-bonus__hero-section {
        padding: 40px 15px;
    }

    .page-promo-welcome-bonus__hero-title {
        font-size: 2.2em;
    }

    .page-promo-welcome-bonus__hero-description {
        font-size: 1em;
    }

    .page-promo-welcome-bonus__hero-button,
    .page-promo-welcome-bonus__cta-button,
    .page-promo-welcome-bonus__final-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promo-welcome-bonus__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promo-welcome-bonus__text-content {
        font-size: 0.95em;
    }

    .page-promo-welcome-bonus__container {
        padding: 30px 15px;
    }

    .page-promo-welcome-bonus__cards-grid,
    .page-promo-welcome-bonus__features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-promo-welcome-bonus__card,
    .page-promo-welcome-bonus__feature-card {
        min-height: auto; /* Allow height to adjust */
    }

    .page-promo-welcome-bonus__card-image,
    .page-promo-welcome-bonus__feature-image {
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    .page-promo-welcome-bonus__final-cta-section {
        padding: 40px 15px;
        margin: 30px auto;
    }

    /* Important: Mobile content area images must be constrained */
    .page-promo-welcome-bonus img {
        max-width: 100%;
        height: auto;
    }
}