/* /evenementen/css/style.css */

/* --- Algemene Stijlen voor de Pagina --- */


.how-it-works-page .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Hero Sectie --- */
.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/header-paginas.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 700px;
    opacity: 0.9;
}

.page-hero .avg-info {
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}


/* --- Content Sectie --- */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 26px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
}

/* --- Stappen Container (3 stappen) --- */
.steps-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.steps-content {
    flex: 1;
}

.steps-image {
    flex: 0 1 400px;
    /* Basis 400px, kan krimpen, niet groeien */
    text-align: center;
}

.steps-image img {
    max-width: 100%;
    height: auto;
}

.steps-content h3 {
    font-size: 28px;
    color: #c0392b;
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
}

.steps-list li {
    counter-increment: steps-counter;
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
}

.steps-list li::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #c0392b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.steps-list li strong {
    display: block;
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.steps-list li p,
.steps-list li small {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.steps-list li small {
    font-style: italic;
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

.visibility-status {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #c0392b;
}

.visibility-status h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.visibility-status p {
    margin: 0;
    font-size: 16px;
}

/* --- Lidmaatschap Upgrade Sectie --- */
.membership-upgrade {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.benefits-and-costs {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
}

.benefits,
.costs {
    flex: 1;
    max-width: 350px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefits h3,
.costs h3 {
    font-size: 22px;
    color: #c0392b;
    margin-bottom: 15px;
}

.benefits ul {
    list-style: '✓';
    padding-left: 20px;
}

.benefits li {
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.costs p {
    font-size: 18px;
    margin-bottom: 10px;
}

.costs strong {
    color: #c0392b;
    font-size: 22px;
}

.cta-button .btn-update {
    display: inline-block;
    background-color: #c0392b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #c0392b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button .btn-update:hover {
    background-color: #a93226;
}

.cta-button p {
    margin-top: 10px;
    color: #555;
}

/* --- Hulp Sectie --- */
.help-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #343a40;
    color: white;
}

.help-section h2 {
    color: white;
}

/* --- Responsive aanpassingen --- */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .steps-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .benefits-and-costs {
        flex-direction: column;
        align-items: center;
    }

    .benefits,
    .costs {
        width: 100%;
        max-width: 400px;
    }
}