/* style/index-latest-promotions.css */

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

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

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade of primary for contrast */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Buttons */
.page-index-latest-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-index-latest-promotions__btn--primary {
    background-color: #007BFF; /* Primary color */
    color: #FFFFFF; /* White text for contrast */
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #0056b3; /* Darker primary on hover */
    transform: translateY(-2px);
}

.page-index-latest-promotions__btn--secondary {
    background-color: #FFD700; /* Secondary color */
    color: #333; /* Dark text for contrast */
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: #e0b800; /* Darker secondary on hover */
    transform: translateY(-2px);
}

.page-index-latest-promotions__btn--outline {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 10px 20px;
}

.page-index-latest-promotions__btn--outline:hover {
    background-color: #007BFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-index-latest-promotions__btn--claim {
    background-color: #FFD700;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    margin-top: 15px;
}

.page-index-latest-promotions__btn--claim:hover {
    background-color: #e0b800;
}

.page-index-latest-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

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

.page-index-latest-promotions__btn--link {
    background-color: transparent;
    color: #007BFF;
    padding: 0;
    margin-top: 10px;
    font-size: 0.95em;
}

.page-index-latest-promotions__btn--link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Hero Section */
.page-index-latest-promotions__hero {
    background: linear-gradient(135deg, #007BFF 0%, #3399ff 100%); /* Gradient with primary color */
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.page-index-latest-promotions__hero-content {
    max-width: 600px;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Secondary color for emphasis */
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-index-latest-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-latest-promotions__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 400px;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Promotion Categories */
.page-index-latest-promotions__promotion-categories {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-index-latest-promotions__category-card {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions__category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-index-latest-promotions__category-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
}

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

/* Current Promotions */
.page-index-latest-promotions__current-promotions {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.page-index-latest-promotions__promotion-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-index-latest-promotions__promotion-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-index-latest-promotions__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-latest-promotions__promotion-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions__promotion-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-index-latest-promotions__promotion-description {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions__promotion-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-latest-promotions__promotion-features li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.page-index-latest-promotions__promotion-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745; /* Green checkmark */
}

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

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

.page-index-latest-promotions__step-card {
    background-color: #f0f8ff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-latest-promotions__step-number {
    background-color: #FFD700; /* Secondary color */
    color: #333;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__step-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-index-latest-promotions__step-text {
    color: #666;
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Responsible Gambling */
.page-index-latest-promotions__responsible-gambling {
    padding: 60px 0;
    background-color: #e9ecef;
    text-align: center;
}

/* FAQ Section */
.page-index-latest-promotions__faq {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-index-latest-promotions__faq-item {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

.page-index-latest-promotions__faq-answer {
    font-size: 1.0em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

.page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-question::after {
    content: '-';
}

/* Final CTA */
.page-index-latest-promotions__cta-final {
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-title {
    color: #FFD700;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-description {
    color: #E0E0E0;
}

.page-index-latest-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-latest-promotions__promotion-card {
        flex-direction: row;
    }

    .page-index-latest-promotions__promotion-image {
        width: 40%;
        height: auto;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .page-index-latest-promotions__promotion-content {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__promotion-card {
        flex-direction: column;
    }
    .page-index-latest-promotions__promotion-image {
        width: 100%;
        height: 200px;
    }
    .page-index-latest-promotions__promotion-content {
        width: auto;
    }
}

@media (max-width: 767px) {
    .page-index-latest-promotions__hero {
        padding: 60px 20px;
    }
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions__btn--large {
        width: 100%;
    }
    .page-index-latest-promotions__category-grid,
    .page-index-latest-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__promotion-content {
        padding: 20px;
    }
    .page-index-latest-promotions__promotion-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__section-description {
        font-size: 0.95em;
    }
    .page-index-latest-promotions__hero-image-wrapper {
        max-width: 300px;
    }
}