/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #2A2E43; /* Dark text for light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for the page */
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #2A2E43, #4a506b); /* Dark blue to slightly lighter blue for hero */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-promotions__hero .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions h2 {
    font-size: 2.5em;
    color: #2A2E43;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions h3 {
    font-size: 1.8em;
    color: #2A2E43;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-promotions p {
    margin-bottom: 15px;
}

.page-promotions ul, .page-promotions ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-promotions ul li, .page-promotions ol li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #2A2E43;
}

.page-promotions ol li {
    list-style-type: decimal;
}

.page-promotions__btn {
    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;
    margin: 10px 10px 10px 0;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #2A2E43; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    color: #2A2E43;
    border-color: #e6c200;
}

.page-promotions__btn--secondary {
    background-color: #2A2E43; /* Dark blue button */
    color: #FFD700; /* Gold text for dark blue button */
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #4a506b;
    color: #FFD700;
    border-color: #FFD700;
}

.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__promo-card h3 {
    font-size: 1.5em;
    margin-top: 0;
    padding: 0 20px;
    color: #2A2E43;
}

.page-promotions__promo-card p {
    font-size: 0.95em;
    padding: 0 20px;
    color: #555;
}

.page-promotions__promo-card .page-promotions__btn {
    margin-top: 15px;
}

.page-promotions__app-download {
    background-color: #2A2E43;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-promotions__app-download h2 {
    color: #FFD700;
}

.page-promotions__app-download h2::after {
    background-color: #FFD700;
}

.page-promotions__app-download p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-promotions__app-image {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__app-download .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__cta {
    background-color: #FFD700;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    color: #2A2E43;
}

.page-promotions__cta h2 {
    color: #2A2E43;
}

.page-promotions__cta h2::after {
    background-color: #2A2E43;
}

.page-promotions__cta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #2A2E43;
}

.page-promotions__cta-buttons .page-promotions__btn {
    margin: 0 10px;
}

.page-promotions__cta-buttons .page-promotions__btn--primary {
    background-color: #2A2E43;
    color: #FFD700;
    border-color: #2A2E43;
}

.page-promotions__cta-buttons .page-promotions__btn--primary:hover {
    background-color: #4a506b;
    color: #FFD700;
    border-color: #4a506b;
}

.page-promotions__cta-buttons .page-promotions__btn--secondary {
    background-color: #FFFFFF;
    color: #2A2E43;
    border-color: #2A2E43;
}

.page-promotions__cta-buttons .page-promotions__btn--secondary:hover {
    background-color: #f0f0f0;
    color: #2A2E43;
    border-color: #2A2E43;
}

.page-promotions__terms-conditions a, .page-promotions__how-to-claim a, .page-promotions__overview a {
    color: #007bff; /* Standard link color for clarity */
    text-decoration: none;
}

.page-promotions__terms-conditions a:hover, .page-promotions__how-to-claim a:hover, .page-promotions__overview a:hover {
    text-decoration: underline;
}

.page-promotions .text-highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero h1 {
        font-size: 2.5em;
    }

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

    .page-promotions h3 {
        font-size: 1.4em;
    }

    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__hero-image {
        display: none; /* Hide hero image on small screens to save space */
    }
}

@media (max-width: 480px) {
    .page-promotions__hero h1 {
        font-size: 2em;
    }

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

    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-promotions__cta-buttons .page-promotions__btn {
        width: 80%;
        margin: 5px 0;
    }
}