/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A2B5B 0%, #3a5c9e 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0.9;
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

/* CTA Button */
.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A2B5B; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

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

.page-promotions__cta-button--large {
    font-size: 1.3em;
    padding: 18px 35px;
}

/* Section Titles */
.page-promotions__section-title {
    font-size: 2.5em;
    color: #1A2B5B; /* Dark blue */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    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: #FFD700; /* Gold underline */
    border-radius: 2px;
}

/* Text Content */
.page-promotions__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Intro Section */
.page-promotions__intro {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions__intro .page-promotions__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Promotion List Grid */
.page-promotions__list {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

.page-promotions__promo-card {
    background-color: #fff;
    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-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700; /* Gold border */
}

.page-promotions__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-title {
    font-size: 1.6em;
    color: #1A2B5B; /* Dark blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__promo-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__detail-button {
    display: inline-block;
    background-color: #1A2B5B; /* Dark blue */
    color: #FFD700; /* Gold text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__detail-button:hover {
    background-color: #0d1a3b; /* Darker blue */
    color: #fff;
}

/* Why Choose Section */
.page-promotions__why-choose {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-promotions__benefits-list li {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-promotions__benefits-list li:hover {
    transform: translateY(-5px);
}

.page-promotions__benefit-title {
    font-size: 1.4em;
    color: #1A2B5B; /* Dark blue */
    margin-bottom: 10px;
}

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

/* How to Claim Section */
.page-promotions__how-to-claim {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

.page-promotions__steps-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    counter-increment: step-counter;
}

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #1A2B5B; /* Dark blue */
    color: #FFD700; /* Gold text */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid #FFD700;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #1A2B5B; /* Dark blue */
    margin-top: 15px;
    margin-bottom: 10px;
}

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

/* Responsible Gaming Section */
.page-promotions__responsible-gaming {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.page-promotions__responsible-gaming .page-promotions__text-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Conclusion Section */
.page-promotions__conclusion {
    background-color: #1A2B5B; /* Dark blue background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions__conclusion .page-promotions__section-title {
    color: #FFD700; /* Gold title */
}

.page-promotions__conclusion .page-promotions__section-title::after {
    background-color: #fff;
}

.page-promotions__conclusion .page-promotions__text-content {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__promo-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .page-promotions__hero {
        min-height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-grid, .page-promotions__benefits-list, .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__hero-image {
        height: 120%;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}