/* style/promo.css */
.page-promo {
    color: #333333; /* Default text color for light body background */
    background-color: #f8f8f8;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promo__hero-container {
    position: relative;
}

.page-promo__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

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

.page-promo__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-promo__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promo__button--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

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

.page-promo__button--secondary {
    background-color: #1A1A1A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-promo__section-title {
    font-size: 2.5em;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-promo__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promo__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555555;
}

.page-promo__promotions-grid {
    padding: 60px 0;
}

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

.page-promo__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promo__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promo__promo-title {
    font-size: 1.5em;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.page-promo__promo-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__how-to-claim {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 80px 0;
}

.page-promo__how-to-claim .page-promo__section-title {
    color: #FFD700;
}

.page-promo__how-to-claim .page-promo__section-intro {
    color: #f0f0f0;
}

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

.page-promo__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promo__step-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-promo__step-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promo__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #cccccc;
}

.page-promo__action-call {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo__action-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-promo__terms-faq {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-promo__terms-list {
    list-style: disc inside;
    margin: 30px auto 60px;
    max-width: 900px;
    font-size: 1em;
    line-height: 1.8;
    color: #555555;
}

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

.page-promo__section-title--faq {
    margin-top: 60px;
}

.page-promo__faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-promo__faq-answer {
    font-size: 0.95em;
    line-height: 1.7;
    color: #666666;
}

.page-promo__cta-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promo__cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
}

.page-promo__cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-promo__cta-description {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__promo-image {
        height: 200px;
    }
    .page-promo__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-content {
        max-width: 90%;
        padding: 15px;
    }
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        padding: 10px 20px;
        width: 100%;
    }
    .page-promo__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-promo__how-to-claim,
    .page-promo__terms-faq,
    .page-promo__cta-section {
        padding: 50px 0;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promo__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promo__action-text {
        font-size: 1.2em;
    }
    .page-promo__cta-title {
        font-size: 1.8em;
    }
    .page-promo__cta-description {
        font-size: 1em;
    }
    /* Mobile overflow prevention */
    .page-promo__hero-image,
    .page-promo__promo-image,
    .page-promo__cta-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.5em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__button {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__promo-title {
        font-size: 1.3em;
    }
    .page-promo__step-title {
        font-size: 1.1em;
    }
    .page-promo__cta-title {
        font-size: 1.5em;
    }
}

/* Ensure all content images are not too small */
.page-promo img {
    min-width: 200px;
    min-height: 200px;
}

/* Specific overrides for content images to ensure minimum display size */
.page-promo__promo-image {
    min-width: 250px; /* Example, adjust as needed */
    min-height: 200px; /* Example, adjust as needed */
}

.page-promo__cta-image {
    min-width: 250px; /* Example, adjust as needed */
    min-height: 200px; /* Example, adjust as needed */
}

@media (max-width: 768px) {
    .page-promo__hero-image,
    .page-promo__promo-image,
    .page-promo__cta-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size even on mobile */
        min-height: 200px;
    }
}