/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* White text for dark background */
    padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header, desktop first */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

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

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.3; /* Subtle background */
}

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

.page-promo__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Black text for FCBC45 background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.page-promo__cta-button:hover {
    background-color: #e0a53a;
    transform: translateY(-3px);
}

.page-promo__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promo__bonuses-overview,
.page-promo__how-to-claim,
.page-promo__terms-conditions,
.page-promo__why-panaloko,
.page-promo__cta-final {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-promo__section-title {
    font-size: 2.8em;
    color: #000000; /* Main color */
    text-align: center;
    margin-bottom: 25px;
}

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

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

.page-promo__promo-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-promo__promo-card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too wide in card */
    height: auto;
    min-height: 200px; /* Minimum image size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-promo__promo-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__promo-card-description {
    font-size: 1em;
    line-height: 1.7;
    color: #666666;
    flex-grow: 1;
    margin-bottom: 25px;
}

.page-promo__promo-card-button {
    display: inline-block;
    background-color: #000000; /* Main color for card button */
    color: #FFFFFF; /* White text for dark background */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promo__promo-card-button:hover {
    background-color: #333333;
}

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

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

.page-promo__claim-step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-promo__claim-step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

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

.page-promo__claim-step-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Black text for FCBC45 background */
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-promo__claim-step-button:hover {
    background-color: #e0a53a;
}

.page-promo__terms-conditions {
    background-color: #FFFFFF;
}

.page-promo__terms-list {
    list-style: disc;
    padding-left: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-promo__terms-list-item {
    font-size: 1em;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 10px;
}

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

.page-promo__terms-conclusion {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-promo__why-panaloko {
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* White text */
}

.page-promo__why-panaloko .page-promo__section-title,
.page-promo__why-panaloko .page-promo__section-intro {
    color: #FFFFFF;
}

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

.page-promo__why-list-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-promo__why-list-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__why-list-title {
    font-size: 1.6em;
    color: #FCBC45; /* Login button color for emphasis */
    margin-bottom: 15px;
}

.page-promo__why-list-description {
    font-size: 1em;
    line-height: 1.7;
    color: #f0f0f0;
    flex-grow: 1;
}

.page-promo__why-list-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px; /* Minimum image size */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-promo__cta-final {
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 120px);
        padding: var(--header-offset, 120px) 15px 40px;
    }

    .page-promo__hero-title {
        font-size: 2.5em;
    }

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

    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promo__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promo__bonuses-overview,
    .page-promo__how-to-claim,
    .page-promo__terms-conditions,
    .page-promo__why-panaloko,
    .page-promo__cta-final {
        padding: 40px 15px;
    }

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

    .page-promo__section-intro {
        font-size: 0.95em;
    }

    .page-promo__promo-grid,
    .page-promo__claim-steps,
    .page-promo__why-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promo__promo-card-image,
    .page-promo__why-list-image {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }

    /* Enforce mobile image responsiveness for all images within .page-promo */
    .page-promo img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .page-promo__terms-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__promo-card-title {
        font-size: 1.5em;
    }
    .page-promo__claim-step-title,
    .page-promo__why-list-title {
        font-size: 1.3em;
    }
}