/* Index pagina */

/* Hero sectie */
.hero-section {
    min-height: 80vh;
    padding-top: 12rem;
    background-image: linear-gradient(rgba(42, 56, 78, 0.7), rgba(42, 56, 78, 0.7)), url('/media/home_bg.jpeg');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
    }
}

.hero-content {
    max-width: 80rem;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 3.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content-inner {
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content-inner {
        padding-right: 4.5rem;
    }
}

.hero-title {
    color: white;
    font-size: var(--font-size-3xl);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    color: white;
    max-width: 48rem;
    text-align: left;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Doel sectie */
.doel-section {
    width: 100%;
}

.doel-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 0;
}

.doel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .doel-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.doel-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doel-text h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.doel-text p {
    max-width: 48rem;
    text-align: left;
    margin: 0;
}

.doel-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media (min-width: 768px) {
    .doel-image {
        min-height: 0;
    }
}

.doel-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .doel-image img {
        min-height: 0;
    }
}

/* Voor Wie sectie */
.voorwie-section {
    background-color: var(--color-accent);
    padding: 4rem 1rem;
    margin-bottom: 4rem;
}

.voorwie-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.voorwie-container h2 {
    color: var(--color-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.voorwie-description {
    color: var(--color-secondary);
    font-size: var(--font-size-large);
    margin: 0;
}