/* style/promotions.css */

/* Base Styles & Utilities */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__text {
    line-height: 1.8;
    margin-bottom: 1em;
    color: #e0e0e0; /* Light text on dark background for readability */
}

.page-promotions__highlight {
    color: #FFA500; /* Auxiliary color for emphasis */
    font-weight: bold;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 20px;
}

.page-promotions__btn--primary {
    background-color: #FFA500; /* Auxiliary color */
    color: #0A2E59; /* Main color for text */
    border: 2px solid #FFA500;
}

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

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

.page-promotions__btn--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__link-in-text {
    color: #FFA500;
    text-decoration: underline;
}

.page-promotions__link-in-text:hover {
    color: #ffb733;
}

.page-promotions__list {
    list-style: disc inside;
    margin-bottom: 1em;
    padding-left: 20px;
    color: #e0e0e0;
}

.page-promotions__list li {
    margin-bottom: 0.5em;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFA500; /* Auxiliary color for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions__card-title {
    font-size: 1.8em;
    color: #FFA500; /* Auxiliary color for card titles */
    margin-bottom: 15px;
    font-weight: 600;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A2E59 0%, #1a4d80 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFA500; /* Auxiliary color */
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

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

/* General Sections */
.page-promotions__section {
    padding: 60px 0;
    background-color: #0A2E59; /* Main color as background */
    color: #e0e0e0;
}

.page-promotions__section--dark {
    background-color: #1a3e66; /* Slightly lighter dark blue for contrast */
}

/* Promotion Cards */
.page-promotions__promotion-card {
    display: flex;
    flex-direction: column;
    background-color: #0A2E59; /* Main color */
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid #1a4d80;
}

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

.page-promotions__card-content {
    padding: 30px;
}

.page-promotions__card-text {
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

.page-promotions__step-item {
    background-color: #1a3e66; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a5a90;
}

.page-promotions__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons pop */
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFA500; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-description {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Reasons List */
.page-promotions__list--reasons {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-promotions__list--reasons li {
    background-color: #1a3e66;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFA500;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-promotions__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Final CTA Section */
.page-promotions__cta-final {
    background-color: #0A2E59; /* Main color */
    padding: 80px 0;
    text-align: center;
    color: #e0e0e0;
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #FFA500; /* Auxiliary color */
    margin-bottom: 25px;
    font-weight: 700;
}

.page-promotions__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-promotions__text--small {
    font-size: 0.9em;
    margin-top: 30px;
    color: #aaa;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-promotions__promotion-card {
        flex-direction: row;
    }

    .page-promotions__promotion-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .page-promotions__card-image {
        width: 40%;
        height: auto;
        border-bottom: none;
        border-right: 1px solid #1a4d80;
    }

    .page-promotions__promotion-card:nth-child(even) .page-promotions__card-image {
        border-left: 1px solid #1a4d80;
        border-right: none;
    }

    .page-promotions__card-content {
        flex: 1;
    }

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

@media (max-width: 767px) {
    .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__card-title {
        font-size: 1.5em;
    }

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

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

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

    .page-promotions__hero-image,
    .page-promotions__image-full-width {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__list {
        padding-left: 15px;
    }
}