/* style/promo.css */

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

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

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

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

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

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7); /* Darken image for text readability, no color change */
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-promo__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
}

.page-promo__hero-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Intro Section */
.page-promo__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

/* Types Section - Bonus Grid */
.page-promo__types-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-promo__bonus-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-promo__bonus-card:hover {
    transform: translateY(-10px);
}

.page-promo__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-promo__card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-promo__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: justify;
}

.page-promo__card-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
    background-color: #e0a53b;
}

/* Claim Section */
.page-promo__claim-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__claim-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promo__step-item {
    background-color: #f8f8f8;
    border-left: 5px solid #FCBC45;
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promo__step-description {
    font-size: 1em;
    color: #555555;
}

.page-promo__step-description a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__step-description a:hover {
    text-decoration: underline;
}

.page-promo__action-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Terms Section */
.page-promo__terms-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-promo__term-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.page-promo__term-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__term-description {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-promo__terms-section a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__terms-section a:hover {
    text-decoration: underline;
}

/* Why Lakiwin Section */
.page-promo__why-lakiwin-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promo__why-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-promo__why-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

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

.page-promo__why-lakiwin-section a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__why-lakiwin-section a:hover {
    text-decoration: underline;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
    padding: 60px 0;
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo__responsible-gaming-section .page-promo__section-title {
    color: #FFFFFF;
}

.page-promo__responsible-gaming-section .page-promo__section-title::after {
    background-color: #FCBC45;
}

.page-promo__responsible-gaming-section .page-promo__text-content {
    color: #f0f0f0;
}

.page-promo__responsible-gaming-section a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__responsible-gaming-section a:hover {
    text-decoration: underline;
}

.page-promo__action-button--secondary {
    background-color: transparent;
    border: 2px solid #FCBC45;
    color: #FCBC45;
}

.page-promo__action-button--secondary:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-promo__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-promo__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

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

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-promo__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__faq-answer a:hover {
    text-decoration: underline;
}

/* Call to Action Section */
.page-promo__cta-section {
    padding: 60px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

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

.page-promo__cta-section .page-promo__section-title::after {
    background-color: #FCBC45;
}

.page-promo__cta-section .page-promo__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promo__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promo__action-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-promo__action-button--register:hover {
    background-color: #e0e0e0;
}

.page-promo__action-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__action-button--login:hover {
    background-color: #e0a53b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 2.8em;
    }
    .page-promo__hero-description {
        font-size: 1.2em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__terms-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        min-height: 400px;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__bonus-grid, .page-promo__terms-grid, .page-promo__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__card-image, .page-promo__card-title, .page-promo__card-description {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }
    .page-promo__text-content, .page-promo__card-description, .page-promo__step-description, .page-promo__term-description, .page-promo__faq-answer {
        font-size: 0.95em;
    }
    .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__action-button {
        width: 80%;
    }
    .page-promo__hero-image,
    .page-promo__card-image,
    .page-promo__bonus-card img,
    .page-promo__terms-section img,
    .page-promo__why-lakiwin-section img,
    .page-promo__responsible-gaming-section img,
    .page-promo__faq-section img,
    .page-promo__cta-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__hero-content {
        padding: 15px;
    }
    .page-promo__step-title {
        font-size: 1.3em;
    }
    .page-promo__faq-question {
        font-size: 1.1em;
    }
    .page-promo__action-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}