/* style/promotions.css */

:root {
    --page-promotions-primary-color: #1A2B4C;
    --page-promotions-secondary-color: #FFD700;
    --page-promotions-text-light: #FFFFFF;
    --page-promotions-text-dark: #333333;
    --page-promotions-background-light: #F8F8F8;
    --page-promotions-background-dark: #1A2B4C;
    --page-promotions-button-hover-primary: #0f1c32;
    --page-promotions-button-hover-secondary: #e5c100;
}

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

.page-promotions a {
    color: var(--page-promotions-primary-color);
    text-decoration: none;
}

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

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

.page-promotions__section--dark {
    background-color: var(--page-promotions-background-dark);
    color: var(--page-promotions-text-light);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__section-title--light {
    color: var(--page-promotions-secondary-color);
}

.page-promotions__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions__text--light {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.page-promotions__button--primary {
    background-color: var(--page-promotions-secondary-color);
    color: var(--page-promotions-primary-color);
    border: 2px solid var(--page-promotions-secondary-color);
}

.page-promotions__button--primary:hover {
    background-color: var(--page-promotions-button-hover-secondary);
    color: var(--page-promotions-primary-color);
    text-decoration: none;
}

.page-promotions__button--secondary {
    background-color: var(--page-promotions-primary-color);
    color: var(--page-promotions-secondary-color);
    border: 2px solid var(--page-promotions-primary-color);
}

.page-promotions__button--secondary:hover {
    background-color: var(--page-promotions-button-hover-primary);
    color: var(--page-promotions-secondary-color);
    text-decoration: none;
}

/* Hero Section */
.page-promotions__hero {
    background-color: var(--page-promotions-background-dark);
    color: var(--page-promotions-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin-right: 40px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-promotions-secondary-color);
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions__hero-image-wrapper {
    position: relative;
    z-index: 1;
    width: 50%;
    max-width: 600px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section Features */
.page-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions__feature-title {
    font-size: 1.8em;
    color: var(--page-promotions-primary-color);
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    font-size: 1em;
    color: var(--page-promotions-text-dark);
}

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

.page-promotions__offer-card {
    background-color: var(--page-promotions-primary-color);
    color: var(--page-promotions-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__offer-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-promotions__offer-title {
    font-size: 1.6em;
    color: var(--page-promotions-secondary-color);
    margin-bottom: 15px;
}

.page-promotions__offer-title a {
    color: var(--page-promotions-secondary-color);
    text-decoration: none;
}

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

.page-promotions__offer-description {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.85);
}

/* How To Join Steps */
.page-promotions__steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.page-promotions__steps-list {
    flex: 1;
    min-width: 300px;
}

.page-promotions__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-promotions__step-number {
    background-color: var(--page-promotions-secondary-color);
    color: var(--page-promotions-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: var(--page-promotions-primary-color);
    margin-top: 0;
    margin-bottom: 5px;
}

.page-promotions__step-text {
    font-size: 1em;
    color: var(--page-promotions-text-dark);
}

.page-promotions__steps-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

/* CTA Section */
.page-promotions__cta-content {
    text-align: center;
}

.page-promotions__cta .page-promotions__button {
    margin-top: 30px;
}

/* FAQ Section */
.page-promotions__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: var(--page-promotions-primary-color);
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: var(--page-promotions-text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-promotions__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .page-promotions__hero-image-wrapper {
        width: 100%;
    }

    .page-promotions__hero-title {
        font-size: 2.8em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__steps-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__hero-title {
        font-size: 2.2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__text {
        font-size: 1em;
    }

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

    .page-promotions__offer-card, .page-promotions__feature-item {
        padding: 20px;
    }

    .page-promotions__step-title {
        font-size: 1.3em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}