/* style/promotions.css */

/* Base Styles for Promotions Page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #36454F; /* Charcoal Gray for text */
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #DC143C; /* Crimson */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    border-radius: 2px;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #DC143C, #36454F);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-promotions__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

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

.page-promotions__introduction,
.page-promotions__how-to-claim,
.page-promotions__terms-conditions,
.page-promotions__latest-updates,
.page-promotions__cta-bottom {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__introduction p,
.page-promotions__how-to-claim p,
.page-promotions__terms-conditions p,
.page-promotions__latest-updates p,
.page-promotions__cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions__introduction p strong {
    color: #DC143C;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #DC143C; /* Crimson */
    color: #fff;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #a0102d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

.page-promotions__btn--accent {
    background-color: #36454F; /* Charcoal Gray */
    color: #fff;
    box-shadow: 0 5px 15px rgba(54, 69, 79, 0.4);
    margin-left: 20px;
}

.page-promotions__btn--accent:hover {
    background-color: #212a30;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(54, 69, 79, 0.6);
}

.page-promotions__why-choose {
    background-color: #f0f2f5;
    padding: 80px 0;
}

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

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

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

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

.page-promotions__promo-categories {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions__promo-categories > p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.page-promotions__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__category-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #DC143C;
}

.page-promotions__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-promotions__category-title {
    font-size: 1.8em;
    color: #36454F;
    margin-bottom: 15px;
}

.page-promotions__category-item p {
    font-size: 1em;
    color: #666;
    flex-grow: 1;
    margin-bottom: 25px;
}

.page-promotions__btn--secondary {
    background-color: #e0e0e0;
    color: #36454F;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 25px;
    margin-top: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn--secondary:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__btn--claim {
    background-color: #DC143C;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 25px;
    margin-top: 10px;
    margin-left: 10px;
    box-shadow: 0 3px 8px rgba(220, 20, 60, 0.3);
}

.page-promotions__btn--claim:hover {
    background-color: #a0102d;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(220, 20, 60, 0.5);
}

.page-promotions__how-to-claim ol {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.page-promotions__how-to-claim li {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #36454F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__how-to-claim li strong {
    color: #DC143C;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-promotions__how-to-claim li a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__how-to-claim li a:hover {
    text-decoration: underline;
}

.page-promotions__steps-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-conditions ul {
    list-style: disc;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promotions__terms-conditions li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.page-promotions__terms-conditions li strong {
    color: #DC143C;
}

.page-promotions__terms-conditions a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__latest-updates .page-promotions__container,
.page-promotions__cta-bottom .page-promotions__container {
    text-align: center;
}

.page-promotions__cta-bottom {
    background-color: #DC143C;
    color: #fff;
    padding: 80px 0;
}

.page-promotions__cta-bottom .page-promotions__section-title {
    color: #fff;
}

.page-promotions__cta-bottom .page-promotions__section-title::after {
    background-color: #fff;
}

.page-promotions__cta-bottom p {
    color: #f0f0f0;
}

.page-promotions__btn--cta {
    background-color: #fff;
    color: #DC143C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-promotions__btn--cta:hover {
    background-color: #eee;
    color: #a0102d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-text {
    margin-top: 30px;
    font-size: 1.1em;
}

.page-promotions__cta-text a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.page-promotions__cta-text a:hover {
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__hero {
        flex-direction: column;
        gap: 20px;
    }
    .page-promotions__hero-image-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 15px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__features-grid,
    .page-promotions__category-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__btn--accent {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions__category-item .page-promotions__btn--claim {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__feature-title,
    .page-promotions__category-title {
        font-size: 1.3em;
    }
    .page-promotions__how-to-claim li {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    .page-promotions__how-to-claim li strong {
        font-size: 1.1em;
    }
}