/* style/responsible-gambling.css */

/* General Section Styling */
.page-responsible-gambling__section {
    padding: 60px 0;
    color: #333;
}

.page-responsible-gambling__section--white {
    background-color: #fff;
}

.page-responsible-gambling__section--light-blue {
    background-color: #f0f8ff; /* Lightest shade of blue */
}

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

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-responsible-gambling__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #495057;
}

.page-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling__list li {
    background-color: #e9f7ef; /* A very light green for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-responsible-gambling__list li p {
    margin: 0;
    font-size: 1em;
    color: #333;
}

.page-responsible-gambling__list li::before {
    content: '✓';
    color: #28a745; /* Secondary color */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1.5;
}

/* Hero Section */
.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #007bff, #28a745); /* Primary and secondary colors */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_lines,geometric_pattern,blue_green]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-responsible-gambling__hero-section .page-responsible-gambling__container {
    position: relative;
    z-index: 1;
}

.page-responsible-gambling__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-responsible-gambling__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-responsible-gambling__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-responsible-gambling__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-responsible-gambling__btn--primary {
    background-color: #fff;
    color: #007bff; /* Primary color for text */
    border-color: #fff;
}

.page-responsible-gambling__btn--primary:hover {
    background-color: #e6e6e6;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-responsible-gambling__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Features Grid */
.page-responsible-gambling__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-responsible-gambling__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-responsible-gambling__card-title {
    font-size: 1.8em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-responsible-gambling__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-responsible-gambling__card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745; /* Secondary color */
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling__card-link:hover {
    background-color: #1e7e34;
}

/* Image Styling */
.page-responsible-gambling__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* CTA Section at bottom */
.page-responsible-gambling__cta-section {
    background: linear-gradient(45deg, #0056b3, #007bff); /* Darker blue to primary blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
}

.page-responsible-gambling__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-responsible-gambling__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-responsible-gambling__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-responsible-gambling__actions-bottom {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1.1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling__hero-section {
        padding: 80px 0;
    }
    .page-responsible-gambling__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-responsible-gambling__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__features-grid {
        grid-template-columns: 1fr;
    }
    .page-responsible-gambling__cta-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling__section {
        padding: 40px 0;
    }
    .page-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 0.9em;
    }
    .page-responsible-gambling__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    .page-responsible-gambling__text {
        font-size: 0.95em;
    }
    .page-responsible-gambling__list li {
        padding: 12px 15px;
    }
    .page-responsible-gambling__card-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling__card-description {
        font-size: 0.9em;
    }
    .page-responsible-gambling__card-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-responsible-gambling__cta-title {
        font-size: 1.6em;
    }
    .page-responsible-gambling__cta-description {
        font-size: 1em;
    }
}