/* style/promotions.css */

/* General page styling */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A1A; /* Auxiliary color as main background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Section styling */
.page-promotions__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section:nth-child(odd) {
    background-color: #2a2a2a; /* Slightly lighter dark background for contrast between sections */
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Primary color for titles */
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-promotions__section-text {
    font-size: 1.1em;
    color: #D0D0D0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Darker gradient for hero */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-promotions__hero-content {
    max-width: 900px;
    z-index: 1;
    text-align: center;
}

.page-promotions__hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0;
    line-height: 1.5;
}

.page-promotions__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__hero-btn:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15; /* Subtly blend background image */
}

.page-promotions__hero-image .page-promotions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%); /* Darken and desaturate background image */
}

/* Feature List (Why Choose) */
.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions__feature-list li {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #D0D0D0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions__feature-list li strong {
    color: #FFD700;
    font-weight: bold;
}

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

.page-promotions__offer-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-promotions__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.3);
}

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

.page-promotions__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #B0B0B0;
    padding: 0 15px;
    flex-grow: 1; /* Make description take up available space */
    margin-bottom: 20px;
}

.page-promotions__card-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.page-promotions__card-btn:not(.page-promotions__card-btn--primary) {
    background-color: #444444;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions__card-btn:not(.page-promotions__card-btn--primary):hover {
    background-color: #FFD700;
    color: #1A1A1A;
}

.page-promotions__card-btn--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 1px solid #FFD700;
}

.page-promotions__card-btn--primary:hover {
    background-color: #E6C200;
    color: #1A1A1A;
}


/* How to Claim */
.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__steps-list li {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    font-size: 1.15em;
    color: #D0D0D0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-right: 5px solid #FFD700;
}

.page-promotions__steps-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

.page-promotions__cta-buttons {
    margin-top: 40px;
}

.page-promotions__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__cta-btn:not(.page-promotions__cta-btn--secondary) {
    background-color: #FFD700;
    color: #1A1A1A;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-btn:not(.page-promotions__cta-btn--secondary):hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-promotions__cta-btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions__cta-btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

/* App Download Section */
.page-promotions__app-download {
    background-color: #1A1A1A;
}

.page-promotions__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-promotions__app-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions__app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions__app-features li {
    font-size: 1.1em;
    color: #D0D0D0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-promotions__app-features li::before {
    content: '✓';
    color: #FFD700;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-promotions__app-features li strong {
    color: #FFD700;
}

.page-promotions__app-download-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__app-download-btn:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-promotions__app-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.page-promotions__app-image .page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-promotions__faq-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
}

.page-promotions__faq-question.active {
    /* Style for active (open) FAQ question if needed */
}

.page-promotions__faq-answer {
    font-size: 1.1em;
    color: #D0D0D0;
    display: none; /* Hidden by default, shown by JS */
}

/* Final CTA Section */
.page-promotions__final-cta {
    background-color: #1A1A1A;
    padding: 80px 20px;
}

.page-promotions__final-cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    margin-top: 30px;
}

.page-promotions__final-cta-btn:hover {
    background-color: #E6C200;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-description {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__app-text {
        text-align: center;
    }
    .page-promotions__app-features li {
        padding-left: 0;
    }
    .page-promotions__app-features li::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__hero-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 15px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-text,
    .page-promotions__feature-list li,
    .page-promotions__card-description,
    .page-promotions__steps-list li,
    .page-promotions__app-features li,
    .page-promotions__faq-answer {
        font-size: 1em;
    }
    .page-promotions__offer-card {
        padding-bottom: 15px;
    }
    .page-promotions__card-title {
        font-size: 1.5em;
    }
    .page-promotions__card-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__app-download-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__faq-question {
        font-size: 1.3em;
    }
    .page-promotions__final-cta-btn {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 0.95em;
    }
    .page-promotions__hero-btn {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .page-promotions__app-download-btn {
        font-size: 1em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__final-cta-btn {
        font-size: 1em;
    }
}