/* style/promotions.css */

/* General Styles */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-child(odd) {
    background-color: #1A1A2E;
}

.page-promotions__section:nth-child(even) {
    background-color: #282840; /* Slightly lighter dark for contrast */
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #E94560; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions__section-title .highlight {
    color: #E0E0E0;
}

.page-promotions__section-subtitle {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn--primary {
    background-color: #E94560; /* Accent color */
    color: #FFFFFF;
    border: 2px solid #E94560;
}

.page-promotions__btn--primary:hover {
    background-color: #D33A50;
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #E94560;
    border: 2px solid #E94560;
    margin-left: 15px;
}

.page-promotions__btn--secondary:hover {
    background-color: #E94560;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-promotions__btn--small {
    padding: 8px 18px;
    font-size: 0.95em;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

.page-promotions a {
    color: #E94560;
    text-decoration: none;
}

.page-promotions a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #282840 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* Ensure sufficient height */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

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

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

.page-promotions__hero-description {
    font-size: 1.4em;
    color: #F0F0F0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-promotions__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Intro Section */
.page-promotions__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D0D0D0;
    text-align: left;
}

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

.page-promotions__card {
    background-color: #22223A; /* Darker background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333350;
}

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

.page-promotions__card-title {
    font-size: 1.6em;
    color: #E94560;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promotions__steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-promotions__steps li {
    background-color: #22223A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.page-promotions__steps li:hover {
    transform: translateY(-5px);
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #E94560;
    margin-bottom: 10px;
}

.page-promotions__steps p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-promotions__how-to-claim-cta {
    margin-top: 50px;
}

/* Terms and Conditions */
.page-promotions__terms-list {
    list-style: disc inside;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

/* Why Choose Us */
.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__feature-item {
    background-color: #22223A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
    background-color: #282840;
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #E94560;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    color: #C0C0C0;
    font-size: 1em;
}

/* FAQ Section */
.page-promotions__faq {
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #22223A;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #E94560;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-promotions__faq-answer {
    color: #C0C0C0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-promotions__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 15px;
}

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

.page-promotions__final-cta-title {
    font-size: 3em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions__final-cta-description {
    font-size: 1.3em;
    color: #F0F0F0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* 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__card-title {
        font-size: 1.4em;
    }
    .page-promotions__feature-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
        min-height: 450px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn--secondary {
        margin-left: 0;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-subtitle {
        font-size: 1em;
    }
    .page-promotions__grid, .page-promotions__steps, .page-promotions__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-content {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
    .page-promotions__final-cta-title {
        font-size: 2.2em;
    }
    .page-promotions__final-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
        min-height: 380px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 0.95em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions__card-image {
        height: 150px;
    }
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__final-cta-title {
        font-size: 1.8em;
    }
}