/* ===== Algemene body ===== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    scroll-behavior: smooth;
    margin: 0;
    color: #333;
}

/* ===== Hero sectie ===== */
.hero {
    position: relative;
    height: 100vh;
    background: url('img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    color: #ffffff;
    overflow: hidden;
}

/* Overlay voor leesbaarheid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Hero tekst */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero p.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero knoppen */
.hero .btn-custom {
    min-width: 160px;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-custom.primary {
    background-color: #0d6efd;
    border: none;
    color: #fff;
}

.hero .btn-custom.primary:hover {
    background: linear-gradient(45deg, #0b5ed7, #3390ff);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.hero .btn-custom.outline {
    background-color: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.hero .btn-custom.outline:hover {
    background: linear-gradient(45deg, #0b5ed7, #3390ff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* ===== Kaarten ===== */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.card-text {
    color: #555;
    margin-bottom: 1rem;
}

/* ===== Modal ===== */
.modal-body img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-body {
    padding-top: 0.5rem;
}

.modal-title {
    font-weight: 700;
}

.modal-body img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* ===== Over ons sectie ===== */
#about {
    background-color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
}

#about .about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.about-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #666;
}

/* ===== Footer ===== */
footer {
    padding: 4rem 2rem 2rem;
    background-color: #222;
    color: #ccc;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

footer p,
footer a {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

footer .social-icons a {
    margin-right: 0.5rem;
    font-size: 1.3rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #0d6efd;
}

/* ===== Responsive styling ===== */

/* Hero sectie */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p.lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p.lead {
        font-size: 1.1rem;
    }

    .hero .btn-custom {
        margin-bottom: 0.5rem;
    }
}

/* Kaarten */
@media (max-width: 1024px) {
    .card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* Over ons sectie */
@media (max-width: 1024px) {
    #about h2 {
        font-size: 2.2rem;
    }

    #about p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 4rem 1rem;
    }

    #about .about-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 0.95rem;
    }

    .about-card {
        width: 100%;
        padding: 1.5rem;
    }
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-body img {
        height: auto;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer .social-icons a {
        margin-right: 0.5rem;
    }
}