/* style/promotions-welcome-bonus-details.css */

/* Base Styles for the Page */
.page-promotions-welcome-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-welcome-bonus-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-welcome-bonus-details__section {
    padding: 60px 0;
}

.page-promotions-welcome-bonus-details__section--light {
    background-color: #f0f2f5;
}

.page-promotions-welcome-bonus-details__section--dark {
    background-color: #0A2E36;
    color: #ffffff;
}

.page-promotions-welcome-bonus-details__section--dark h2,
.page-promotions-welcome-bonus-details__section--dark h3 {
    color: #E0B34C;
}

.page-promotions-welcome-bonus-details h1,
.page-promotions-welcome-bonus-details h2 {
    color: #0A2E36;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details h1 {
    font-size: 3em;
    color: #E0B34C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus-details h2 {
    font-size: 2.5em;
}

.page-promotions-welcome-bonus-details h3 {
    color: #0A2E36;
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-welcome-bonus-details strong {
    color: #0A2E36; /* Ensure strong text is visible */
}

.page-promotions-welcome-bonus-details__section--dark strong {
    color: #E0B34C; /* Ensure strong text is visible on dark background */
}

.page-promotions-welcome-bonus-details__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-promotions-welcome-bonus-details__btn--primary {
    background-color: #E0B34C;
    color: #0A2E36;
    border: 2px solid #E0B34C;
}

.page-promotions-welcome-bonus-details__btn--primary:hover {
    background-color: #c99e3a;
    color: #000;
    border-color: #c99e3a;
}

.page-promotions-welcome-bonus-details__btn--secondary {
    background-color: transparent;
    color: #0A2E36;
    border: 2px solid #0A2E36;
}

.page-promotions-welcome-bonus-details__btn--secondary:hover {
    background-color: #0A2E36;
    color: #E0B34C;
}

/* Hero Section */
.page-promotions-welcome-bonus-details__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4f5d 100%); /* Darker gradient for hero */
    color: #ffffff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 500px;
}

.page-promotions-welcome-bonus-details__hero-content {
    max-width: 600px;
}

.page-promotions-welcome-bonus-details__hero-content h1 {
    color: #E0B34C;
    font-size: 3.8em;
    margin-bottom: 20px;
    text-align: left;
}

.page-promotions-welcome-bonus-details__hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-welcome-bonus-details__hero-image {
    flex-shrink: 0;
}

.page-promotions-welcome-bonus-details__hero-image img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Steps Section */
.page-promotions-welcome-bonus-details__steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-welcome-bonus-details__step-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__step-item:hover {
    transform: translateY(-10px);
}

.page-promotions-welcome-bonus-details__step-icon {
    font-size: 2.5em;
    color: #E0B34C;
    background-color: #0A2E36;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__step-item h3 {
    font-size: 1.5em;
    margin-top: 0;
    color: #0A2E36;
}

/* List Styles */
.page-promotions-welcome-bonus-details__list,
.page-promotions-welcome-bonus-details__ordered-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions-welcome-bonus-details__list li,
.page-promotions-welcome-bonus-details__ordered-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #E0B34C;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-promotions-welcome-bonus-details__list li strong,
.page-promotions-welcome-bonus-details__ordered-list li strong {
    color: #E0B34C;
}

.page-promotions-welcome-bonus-details__ordered-list {
    counter-reset: custom-counter;
}

.page-promotions-welcome-bonus-details__ordered-list li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter) ". ";
    color: #E0B34C;
    font-weight: bold;
    margin-right: 8px;
}

/* Reasons Section */
.page-promotions-welcome-bonus-details__reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__reason-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__reason-item:hover {
    transform: translateY(-10px);
}

.page-promotions-welcome-bonus-details__reason-item h3 {
    color: #0A2E36;
    font-size: 1.4em;
    margin-top: 15px;
}

.page-promotions-welcome-bonus-details__icon {
    width: 60px;
    height: 60px;
    filter: invert(16%) sepia(23%) saturate(1832%) hue-rotate(170deg) brightness(94%) contrast(93%); /* Adjust to match #0A2E36 */
    margin-bottom: 15px;
}

/* FAQ Section */
.page-promotions-welcome-bonus-details__faq {
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-welcome-bonus-details__faq-item h3 {
    color: #E0B34C;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-welcome-bonus-details__faq-item p {
    color: #e0e0e0;
    font-size: 1.05em;
    margin-top: 10px;
}

/* Call to Action Section */
.page-promotions-welcome-bonus-details__cta {
    background-color: #0A2E36;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-welcome-bonus-details__cta-content h2 {
    color: #E0B34C;
    font-size: 2.8em;
}

.page-promotions-welcome-bonus-details__cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions-welcome-bonus-details__cta .page-promotions-welcome-bonus-details__btn {
    margin: 0 15px;
}

.page-promotions-welcome-bonus-details__cta .page-promotions-welcome-bonus-details__btn--secondary {
    color: #E0B34C;
    border-color: #E0B34C;
}

.page-promotions-welcome-bonus-details__cta .page-promotions-welcome-bonus-details__btn--secondary:hover {
    background-color: #E0B34C;
    color: #0A2E36;
}

/* Image Styling */
.page-promotions-welcome-bonus-details__img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-promotions-welcome-bonus-details__image-centered {
    display: block;
    margin: 40px auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-welcome-bonus-details__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-promotions-welcome-bonus-details__hero-content h1 {
        font-size: 3em;
        text-align: center;
    }

    .page-promotions-welcome-bonus-details__hero-image img {
        max-width: 100%;
        margin-top: 40px;
    }

    .page-promotions-welcome-bonus-details h1 {
        font-size: 2.5em;
    }

    .page-promotions-welcome-bonus-details h2 {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details h3 {
        font-size: 1.6em;
    }

    .page-promotions-welcome-bonus-details__step-item,
    .page-promotions-welcome-bonus-details__reason-item {
        max-width: none;
        width: 100%;
    }

    .page-promotions-welcome-bonus-details__steps,
    .page-promotions-welcome-bonus-details__reasons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-welcome-bonus-details__cta .page-promotions-welcome-bonus-details__btn {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus-details__hero-content h1 {
        font-size: 2.5em;
    }

    .page-promotions-welcome-bonus-details h1 {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details h2 {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus-details__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__section {
        padding: 40px 0;
    }
}