/* style/promo.css */

.page-promo {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

.page-promo__hero-section {
    background-color: #000000; /* Main color for hero background */
    padding: 0; /* Assuming shared.css handles main .page-content padding-top */
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim image to make text stand out */
}

.page-promo__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-promo__button--register {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
    background-color: #333333;
    border-color: #FCBC45;
}

.page-promo__button--claim {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--claim:hover {
    background-color: #e0a538;
    border-color: #e0a538;
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-promo__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promo__keyword {
    font-weight: bold;
    color: #FCBC45;
}

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

.page-promo__promo-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-promo__card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 20px 15px 10px;
}

.page-promo__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-promo__promo-card .page-promo__button {
    margin: 0 15px 20px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
}

.page-promo__promo-card .page-promo__button:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__claim-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-promo__step-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.page-promo__step-item .page-promo__button {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-promo__step-item .page-promo__button:hover {
    background-color: #e0a538;
}

.page-promo__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #333333;
}

.page-promo__list-item {
    margin-bottom: 10px;
}

.page-promo__mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.page-promo__mobile-image {
    flex: 1 1 400px;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__mobile-text {
    flex: 1 1 400px;
}

.page-promo__mobile-text .page-promo__button {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    margin-top: 20px;
}

.page-promo__mobile-text .page-promo__button:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__faq-list {
    margin-bottom: 60px;
}

.page-promo__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
}

.page-promo__faq-item.active .page-promo__faq-answer {
    display: block;
}

.page-promo__faq-item .page-promo__button {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-promo__faq-item .page-promo__button:hover {
    background-color: #e0a538;
}

.page-promo__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-promo__cta-section .page-promo__section-title {
    color: #FFFFFF;
    padding-top: 0;
}

.page-promo__cta-section .page-promo__text-content {
    color: #F0F0F0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-promo__button--subscribe {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    margin-bottom: 20px;
}

.page-promo__button--subscribe:hover {
    background-color: #e0a538;
}

.page-promo__inline-link {
    color: #FCBC45;
    text-decoration: underline;
    font-weight: bold;
}

.page-promo__inline-link:hover {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promo__mobile-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__text-content, .page-promo__card-description, .page-promo__step-description, .page-promo__list-item, .page-promo__faq-answer {
        font-size: 0.9em;
    }
    .page-promo__card-title {
        font-size: 1.3em;
    }
    .page-promo__mobile-content {
        flex-direction: column;
    }
    .page-promo__mobile-image {
        max-width: 100%;
        height: auto; /* Ensure responsive scaling */
    }
    .page-promo__promo-card .page-promo__button, .page-promo__step-item .page-promo__button, .page-promo__faq-item .page-promo__button, .page-promo__button--subscribe {
        width: auto;
        max-width: 100%;
        padding: 10px 20px;
    }
    /* Ensure all images within .page-promo are responsive and not smaller than 200px display size */
    .page-promo img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }
    .page-promo__hero-image {
        min-width: unset;
        min-height: unset;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__hero-actions {
        gap: 10px;
    }
    .page-promo__button {
        width: 90%;
        padding: 12px 20px;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__claim-steps {
        grid-template-columns: 1fr;
    }
    .page-promo__hero-content {
        padding: 10px;
    }
}