/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #000000;
    background-color: #f5f5f5;
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #FFD700, #000000);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 2;
}

.page-promotions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-promotions__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #000000; /* Black for contrast on light background */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__why-choose-section, 
.page-promotions__how-to-claim-section, 
.page-promotions__promotion-categories-section, 
.page-promotions__general-terms-section, 
.page-promotions__call-to-action-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__why-choose-section .page-promotions__section-title,
.page-promotions__how-to-claim-section .page-promotions__section-title,
.page-promotions__promotion-categories-section .page-promotions__section-title,
.page-promotions__general-terms-section .page-promotions__section-title,
.page-promotions__call-to-action-section .page-promotions__section-title {
    color: #000000;
}

.page-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-promotions__keyword {
    font-weight: bold;
    color: #DC143C;
}

.page-promotions__image-content {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-list {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions__step-item {
    background-color: #fff8e1; /* Light gold background */
    border-left: 5px solid #FFD700; /* Gold border */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-item strong {
    color: #000000;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black for contrast */
}

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

.page-promotions__btn--secondary {
    background-color: #000000; /* Black */
    color: #FFD700; /* Gold for contrast */
    border: 1px solid #FFD700;
}

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

.page-promotions__btn--tertiary {
    background-color: #DC143C; /* Deep Red */
    color: #ffffff;
    font-size: 0.95em;
    padding: 10px 20px;
    margin-top: 15px;
}

.page-promotions__btn--tertiary:hover {
    background-color: #b01030;
    transform: translateY(-1px);
}

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

.page-promotions__list-item {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__list-item h3 {
    font-size: 1.6em;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions__list-item h3 a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.page-promotions__list-item h3 a:hover {
    color: #DC143C;
}

.page-promotions__list-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.page-promotions__item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-promotions__general-terms-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.page-promotions__general-terms-section .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__general-terms-section .page-promotions__text-content {
    color: #e0e0e0;
}

.page-promotions__terms-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
    color: #e0e0e0;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions__terms-list li strong {
    color: #FFD700;
}

.page-promotions__call-to-action-section {
    text-align: center;
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text */
    padding: 80px 0;
}

.page-promotions__call-to-action-section .page-promotions__section-title {
    color: #000000;
}

.page-promotions__call-to-action-section .page-promotions__text-content {
    color: #333333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__intro-text, .page-promotions__text-content, .page-promotions__step-item, .page-promotions__terms-list li {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__list-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__main-title {
        font-size: 2.2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__intro-text {
        font-size: 0.95em;
    }
    .page-promotions__list-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__why-choose-section, 
    .page-promotions__how-to-claim-section, 
    .page-promotions__promotion-categories-section, 
    .page-promotions__general-terms-section, 
    .page-promotions__call-to-action-section {
        padding: 40px 0;
    }
    .page-promotions__btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__intro-text, .page-promotions__text-content, .page-promotions__step-item, .page-promotions__terms-list li, .page-promotions__list-item p {
        font-size: 0.9em;
    }
    .page-promotions__list-item h3 {
        font-size: 1.4em;
    }
    .page-promotions__btn--tertiary {
        font-size: 0.85em;
        padding: 8px 15px;
    }
}