/* style/promotions.css */
/* Page-specific styles for Promotions */

.page-promotions {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

/* Ensure body padding-top is handled by shared.css */
/* .page-promotions should not have padding-top: var(--header-offset); */

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-top: 10px; /* Small top padding for first section */
    text-align: center;
    background-color: #0A0A0A; /* Background */
    position: relative;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: clamp(1.5rem, 4vw, 2rem); /* H1 font size with clamp */
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #111111; /* Dark text for light button background */
}

.page-promotions__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

.page-promotions__btn--primary:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E6B02A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
    background-color: #111111;
    border: 2px solid #F2C14E;
    color: #F2C14E;
}

.page-promotions__btn--secondary:hover {
    background-color: #222222;
    border-color: #FFD36B;
    color: #FFD36B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
    font-size: 2.2rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #FFF6D6;
}

.page-promotions__current-offers {
    padding: 40px 20px;
    background-color: #0A0A0A;
}

.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card .page-promotions__btn {
    margin-top: auto;
    width: 100%;
}

.page-promotions__how-to-claim {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.page-promotions__step-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__step-card:hover {
    transform: translateY(-5px);
}

.page-promotions__step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-text {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__app-download {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

.page-promotions__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.page-promotions__app-text {
    text-align: center;
}

.page-promotions__app-text .page-promotions__description {
    margin-bottom: 30px;
}

.page-promotions__app-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions__app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__why-choose {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.page-promotions__feature-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__feature-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__feature-text {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-promotions__faqs {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

.page-promotions__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #3A2A12;
    margin-top: 10px;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
    display: block;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 15px;
        padding-top: 10px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .page-promotions__description {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn {
        width: 100%;
        min-width: unset;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    .page-promotions__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-promotions__grid,
    .page-promotions__steps-grid,
    .page-promotions__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__card-image {
        height: 200px;
    }

    .page-promotions__app-content {
        flex-direction: column-reverse;
    }

    .page-promotions__app-text {
        order: 2;
    }

    .page-promotions__app-image {
        order: 1;
        margin-bottom: 20px;
    }

    /* Important: Ensure images do not overflow on mobile */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-promotions__step-icon,
    .page-promotions__feature-icon {
        width: 80px;
        height: 80px;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.2rem, 8vw, 1.5rem);
    }
    .page-promotions__section-title {
        font-size: 1.5rem;
    }
}

/* Ensure no filter is used on images */
.page-promotions img {
    filter: none !important;
}