/* style/promotions.css */

/* General styling for the promotions page content */
.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #1A1A1A; /* Main dark background */
    min-height: 100vh;
}

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

/* Section Titles */
.page-promotions__section-title {
    color: #FFD700; /* Auxiliary color for titles */
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-top: 40px;
}

.page-promotions__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #B0B0B0; /* Slightly lighter gray for descriptions */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A1A1A; /* Main dark color for text */
    border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.page-promotions__btn--details {
    background-color: #333; /* Dark gray for details button */
    color: #FFD700;
    border: 1px solid #555;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
    display: block; /* Make it block to take full width */
    width: fit-content;
    margin-right: 10px;
}

.page-promotions__btn--details:hover {
    background-color: #555;
    border-color: #FFD700;
    color: #FFF;
}

.page-promotions__btn--action {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
    display: block; /* Make it block to take full width */
    width: fit-content;
    margin-left: 10px;
}

.page-promotions__btn--action:hover {
    background-color: #E6C200;
    border-color: #E6C200;
}


/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient */
    border-bottom: 5px solid #FFD700; /* Gold separator */
}

.page-promotions__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
}

.page-promotions__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    color: #D0D0D0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* Overview Section */
.page-promotions__overview-section {
    padding: 60px 0;
    background-color: #222222; /* Slightly lighter dark background */
}

.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.page-promotions__feature-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    background-color: #333333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
}


/* Promo Details Section */
.page-promotions__promo-details-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

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

.page-promotions__promo-card {
    background-color: #2D2D2D;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

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

.page-promotions__promo-card-title {
    color: #FFD700;
    font-size: 1.8em;
    margin: 20px 20px 10px;
    font-weight: bold;
}

.page-promotions__promo-card-description {
    color: #B0B0B0;
    font-size: 1em;
    margin: 0 20px 20px;
    flex-grow: 1; /* Allows description to take available space */
}

.page-promotions__promo-card .page-promotions__btn {
    margin: 0 20px 10px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}
.page-promotions__promo-card .page-promotions__btn--details {
    margin-top: auto; /* Push to bottom */
    margin-bottom: 5px;
}
.page-promotions__promo-card .page-promotions__btn--action {
    margin-top: 5px;
    margin-bottom: 0;
}


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

.page-promotions__advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-promotions__advantage-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    background-color: #333333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
}

.page-promotions__advantage-icon {
    font-size: 1.8em;
    color: #FFD700;
    margin-right: 15px;
    line-height: 1;
}

.page-promotions__advantage-list li strong {
    color: #FFD700;
}

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

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

.page-promotions__faq-item {
    background-color: #2D2D2D;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for an indicator icon */
    transition: color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation needed for '-' */
}

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

.page-promotions__faq-answer {
    color: #B0B0B0;
    font-size: 1em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444; /* Separator for clarity */
}

/* CTA Bottom Section */
.page-promotions__cta-bottom {
    padding: 80px 0;
    background: linear-gradient(45deg, #FFD700, #E6C200); /* Gold gradient */
    text-align: center;
    border-top: 5px solid #1A1A1A;
}

.page-promotions__cta-content {
    max-width: 900px;
}

.page-promotions__cta-title {
    color: #1A1A1A;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.page-promotions__cta-description {
    color: #333333;
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

.page-promotions__cta-bottom .page-promotions__btn--primary {
    background-color: #1A1A1A;
    color: #FFD700;
    border-color: #1A1A1A;
}

.page-promotions__cta-bottom .page-promotions__btn--primary:hover {
    background-color: #333333;
    color: #FFD700;
    border-color: #333333;
}

.page-promotions__cta-bottom .page-promotions__btn--secondary {
    background-color: transparent;
    color: #1A1A1A;
    border-color: #1A1A1A;
}

.page-promotions__cta-bottom .page-promotions__btn--secondary:hover {
    background-color: #1A1A1A;
    color: #FFD700;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3.5em;
    }
    .page-promotions__section-title {
        font-size: 2.5em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 60px 15px;
    }
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__hero-cta,
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn--secondary {
        margin-left: 0;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__section-description {
        font-size: 1em;
    }
    .page-promotions__feature-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card-title {
        font-size: 1.6em;
    }
    .page-promotions__promo-card .page-promotions__btn {
        width: calc(100% - 40px); /* Adjust width for smaller screens */
        margin: 10px 20px;
    }
    .page-promotions__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
}