/* style/index-latest-promotions-overview.css */

:root {
    --winclub-gold: #FFD700;
    --winclub-dark-red: #8B0000;
    --winclub-text-dark: #333333;
    --winclub-text-light: #FFFFFF;
    --winclub-bg-dark: #1a1a1a; /* Adjusted for better contrast with light text */
    --winclub-bg-light-contrast: #f0f0f0; /* For sections with dark text */
}

.page-index-latest-promotions-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--winclub-text-dark);
    background-color: var(--winclub-bg-light-contrast);
}

.page-index-latest-promotions-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-index-latest-promotions-overview__hero-section {
    background: linear-gradient(135deg, var(--winclub-gold) 0%, var(--winclub-dark-red) 100%);
    color: var(--winclub-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-overview__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--winclub-text-light);
    line-height: 1.2;
}

.page-index-latest-promotions-overview__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--winclub-text-light);
}

.page-index-latest-promotions-overview__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-index-latest-promotions-overview__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-latest-promotions-overview__content-section {
    padding: 60px 0;
}

.page-index-latest-promotions-overview__bg--dark {
    background-color: var(--winclub-bg-dark);
    color: var(--winclub-text-light);
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__section-title,
.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__paragraph,
.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__list-title,
.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__list li {
    color: var(--winclub-text-light);
}

.page-index-latest-promotions-overview__section-title {
    font-size: 2.5em;
    color: var(--winclub-dark-red);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-latest-promotions-overview__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--winclub-gold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-index-latest-promotions-overview__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--winclub-text-dark);
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__paragraph {
    color: var(--winclub-text-light);
}

.page-index-latest-promotions-overview__paragraph--emphasis {
    font-weight: bold;
    text-align: center;
    font-style: italic;
    color: var(--winclub-dark-red);
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__paragraph--emphasis {
    color: var(--winclub-gold);
}

.page-index-latest-promotions-overview__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-index-latest-promotions-overview__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--winclub-text-dark);
}

.page-index-latest-promotions-overview__numbered-list {
    list-style: none;
    counter-reset: section-counter;
    padding-left: 0;
}

.page-index-latest-promotions-overview__numbered-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.page-index-latest-promotions-overview__numbered-list li::before {
    counter-increment: section-counter;
    content: counter(section-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2em;
    font-weight: bold;
    color: var(--winclub-gold);
}

.page-index-latest-promotions-overview__list-title {
    font-size: 1.8em;
    color: var(--winclub-dark-red);
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__list-title {
    color: var(--winclub-gold);
}

/* Promo Card */
.page-index-latest-promotions-overview__promo-card {
    background-color: var(--winclub-bg-light-contrast);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-overview__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__promo-card-title {
    font-size: 2em;
    color: var(--winclub-dark-red);
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__promo-card-description {
    font-size: 1.05em;
    color: var(--winclub-text-dark);
    margin-bottom: 25px;
}

.page-index-latest-promotions-overview__promo-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-index-latest-promotions-overview__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-latest-promotions-overview__button--primary {
    background-color: var(--winclub-gold);
    color: var(--winclub-dark-red);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview__button--secondary {
    background-color: var(--winclub-dark-red);
    color: var(--winclub-text-light);
    border: 2px solid var(--winclub-gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__button--secondary:hover {
    background-color: #a30000; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Call to Action Section */
.page-index-latest-promotions-overview__cta-section {
    background: linear-gradient(90deg, var(--winclub-dark-red) 0%, #a30000 100%);
    color: var(--winclub-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions-overview__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--winclub-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions-overview__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--winclub-text-light);
}

/* Inline Link Styling */
.page-index-latest-promotions-overview__link-inline {
    color: var(--winclub-dark-red);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-latest-promotions-overview__link-inline:hover {
    color: var(--winclub-gold);
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__link-inline {
    color: var(--winclub-gold);
}

.page-index-latest-promotions-overview__bg--dark .page-index-latest-promotions-overview__link-inline:hover {
    color: #e6c200; /* Slightly darker gold */
}

/* Image Centering */
.page-index-latest-promotions-overview__image--centered {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-latest-promotions-overview__hero-title {
        font-size: 2.5em;
    }

    .page-index-latest-promotions-overview__hero-description {
        font-size: 1em;
    }

    .page-index-latest-promotions-overview__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-latest-promotions-overview__section-title {
        font-size: 2em;
    }

    .page-index-latest-promotions-overview__promo-card-title {
        font-size: 1.5em;
    }

    .page-index-latest-promotions-overview__cta-title {
        font-size: 2.2em;
    }

    .page-index-latest-promotions-overview__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-latest-promotions-overview__cta-group {
        flex-direction: column;
    }

    .page-index-latest-promotions-overview__numbered-list li {
        padding-left: 45px;
    }

    .page-index-latest-promotions-overview__numbered-list li::before {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-overview__hero-title {
        font-size: 2em;
    }

    .page-index-latest-promotions-overview__section-title {
        font-size: 1.8em;
    }

    .page-index-latest-promotions-overview__promo-card {
        padding: 20px;
    }

    .page-index-latest-promotions-overview__button {
        width: 100%;
        max-width: 250px;
    }

    .page-index-latest-promotions-overview__image--centered {
        max-width: 95%;
    }
}