/* style/promotions.css */

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    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: #E6B325;
    border-radius: 2px;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.05em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #E6B325;
    color: #0A2342;
}

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

.page-promotions__btn--secondary {
    background-color: #0A2342;
    color: #E6B325;
    border: 2px solid #E6B325;
}

.page-promotions__btn--secondary:hover {
    background-color: #05152a;
    color: #f0c34e;
    transform: translateY(-2px);
}

.page-promotions__btn--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A2342 0%, #0A2342 60%, #E6B325 100%); /* Adjusted gradient for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: #E6B325; /* Use secondary color for hero title for strong contrast */
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Introduction Section */
.page-promotions__introduction {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions__introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Featured Promotions Grid */
.page-promotions__featured {
    padding: 80px 0;
    background-color: #f0f4f7;
}

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

.page-promotions__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

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

.page-promotions__step-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-promotions__step-card:hover {
    border-color: #E6B325;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #E6B325;
    color: #0A2342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    margin: 0 auto 25px auto;
    box-shadow: 0 4px 10px rgba(230, 179, 37, 0.3);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions__disclaimer {
    margin-top: 40px;
    font-size: 0.95em;
    color: #888;
    text-align: center;
    font-style: italic;
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
    padding: 80px 0;
    background-color: #0A2342;
    color: #f0f0f0;
}

.page-promotions__responsible-gambling .page-promotions__section-title {
    color: #E6B325;
}

.page-promotions__responsible-gambling .page-promotions__section-title::after {
    background-color: #f0f0f0;
}

.page-promotions__responsible-gambling .page-promotions__section-description {
    color: #ccc;
}

.page-promotions__responsible-gambling p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list li {
    background-color: rgba(230, 179, 37, 0.1);
    border-left: 5px solid #E6B325;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f8f8f8;
    transition: background-color 0.3s ease;
}

.page-promotions__list li:hover {
    background-color: rgba(230, 179, 37, 0.2);
}

.page-promotions__list li strong {
    color: #E6B325;
}

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

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

.page-promotions__benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(230, 179, 37, 0.4)); /* Add shadow to icons */
}

.page-promotions__benefit-title {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__benefit-text {
    font-size: 1em;
    color: #666;
}

/* Call to Action Section */
.page-promotions__cta {
    padding: 80px 0;
    background-color: #0A2342;
    color: #fff;
    text-align: center;
}

.page-promotions__cta .page-promotions__section-title {
    color: #E6B325;
}

.page-promotions__cta .page-promotions__section-title::after {
    background-color: #f0f0f0;
}

.page-promotions__cta .page-promotions__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
        min-height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid, .page-promotions__steps-grid, .page-promotions__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card, .page-promotions__step-card, .page-promotions__benefit-card {
        padding: 25px;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions__cta-buttons .page-promotions__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__introduction p, .page-promotions__responsible-gambling p, .page-promotions__list li, .page-promotions__card-text, .page-promotions__step-text, .page-promotions__benefit-text {
        font-size: 0.95em;
    }
}