/* style/promotions.css */

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

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

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #004488;
    color: #fff;
    border-color: #fff;
}

.page-promotions__btn--action {
    background-color: #FFD700;
    color: #003366;
    margin-left: 15px;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
}

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

.page-promotions__btn--tertiary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-promotions__btn--tertiary:hover {
    background-color: #003366;
    color: #fff;
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

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

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

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-promotions__feature-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    font-size: 1em;
    color: #555;
}

/* Main Offers Section */
.page-promotions__main-offers {
    padding: 80px 0;
    background-color: #f4f7f6;
}

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

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

.page-promotions__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

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

.page-promotions__offer-content h3 {
    font-size: 2em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__offer-content p {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__offer-content .page-promotions__btn {
    margin-top: auto;
    margin-right: 15px;
    margin-left: 0;
}

.page-promotions__offer-content .page-promotions__btn--action {
    margin-left: 15px;
}

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

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

.page-promotions__steps li {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.page-promotions__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700;
    color: #003366;
    font-size: 1.8em;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps h4 {
    font-size: 1.5em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions__steps p {
    font-size: 1em;
    color: #555;
}

.page-promotions__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-promotions__responsible-gambling .page-promotions__text-block {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-promotions__faq {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.page-promotions__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.page-promotions__faq-question {
    padding: 20px 30px;
    font-size: 1.4em;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #f0f0f0;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-answer.open {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 30px;
}

.page-promotions__faq-answer p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1.3em;
    }

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

    .page-promotions__offer-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }

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

    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }

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

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

    .page-promotions__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__offer-card {
        flex-direction: column;
    }

    .page-promotions__offer-content .page-promotions__btn {
        margin-left: 0;
        margin-right: 10px;
    }
    .page-promotions__offer-content .page-promotions__btn--action {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-promotions__steps {
        grid-template-columns: 1fr;
    }

    .page-promotions__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

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

    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions__btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .page-promotions__btn--action {
        margin-left: 0;
    }
    .page-promotions__offer-content .page-promotions__btn {
        display: block;
        width: auto;
        margin-bottom: 10px;
    }
    .page-promotions__offer-content .page-promotions__btn--action {
        margin-top: 10px;
    }
}