/* ---------- BASIS ---------- */
body .firstpage .hero {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h2 {
    color: #333;
    margin: 30px 0 40px;
}

/* ---------- HEADER & NAVIGATIE ---------- */
header {
    background: linear-gradient(45deg, #484646, #000000);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

nav a.active {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------- HERO SECTION ---------- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    background: url('../img/1.png') center/cover no-repeat fixed;
}

.hero-text {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}


/* ---------- INTRO & CONTENT ---------- */

.intro-section {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 60px 20px;
}

.intro-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-section {
    margin-left: 35px;
}

.Praktische {
    margin-left: 20px;
}

.row{
    margin-left: 35px;
}

.row-first {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.row-third {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    line-height: 1.6;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.row-fourth {
    margin-left: 20px;
    max-width: 500px;
    padding: 20px;
    line-height: 1.6;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ---------- CTA BUTTONS ---------- */

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-block;
    background-color: #00bcd4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin: 0 10px;
    border-radius: 5px;
}

.btn-secondary {
    background-color: #ff9800;
}


/* ---------- AFBEELDING & PERSONEN ---------- */
.achtergrondfoto {
    background: url('../img/2.png') bottom/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 150px 20px;
    background-attachment: fixed;
}

.reviews-container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.reviews {
    flex: 1;
    margin-left: 35px;
}

.people-images {
    gap: 30px;
    width: 30px;
}

.people-images img {
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-top: -6PX;
}

.text h3 span {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 10px;
  }

/* ---------- FACTS & VISIT ---------- */
.facts-section,
.visit-section {
    margin-top: 40px;
}

.facts-section ul,
.visit-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.facts-section li,
.visit-section li {
    margin-bottom: 10px;
}

/* ---------- FOOTER ---------- */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: linear-gradient(45deg, #484646, #000000);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 2rem 1rem;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }

    .intro-section h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .intro-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    footer p {
        font-size: 0.8em;
    }

    .row-third {
        padding: 20px 15px;
        margin: 0 1rem;
    }

    .row-third h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .row-third p {
        font-size: 1rem;

    }

    .facts-section ul,
    .visit-section ul {
        padding-left: 1.2rem;
    }

    .facts-section li,
    .visit-section li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .reviews-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .reviews {
        width: 100%;
        max-width: 600px;
    }

    .people-images {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }

    .people-images img {
        width: 10px;
        height: auto;
        border-radius: 8px;
    }

    .review {
        padding: 1rem;
        background-color: #f5f5f5;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-buttons .btn,
    .cta-buttons .btn-secondary {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .intro-section h2 {
        font-size: 1.3rem;
    }

    .intro-section p {
        font-size: 0.95rem;
    }

    footer p {
        font-size: 0.75em;
    }

    h2.activiteiten {
        text-align: center;
    }

    .Praktische {
        text-align: center;
    }

    .row {
        margin-left: 0;
    }

    .row-third {
        padding: 15px 10px;
        margin: 0 1rem;
    }

    .row-third h2 {
        font-size: 1.3rem;
    }

    .row-third p {
        font-size: 0.95rem;
    }

    .row-fourth {
        margin: auto;

    }

    .facts-section li,
    .visit-section li {
        font-size: 0.9rem;
    }

    #home h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .people-images img {
        width: 30px;
        border-radius: 50%;
        object-fit: cover;
        float: left;
        margin-top: -6PX;
    }

    .reviews {
    margin-left: 0px;
    }

    .reviews h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .review h3 {
        font-size: 1.1rem;
    }

    .review p {
        font-size: 0.95rem;
    }
}
