        .slideshow-container {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .mySlides {
            display: none;
            height: 100%;
        }

        .mySlides img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            opacity: 0;
            animation: fadeInOut 8s infinite;
        }

        .fade.active img {
            animation: fadeInOut 8s ease-in-out;
        }

        @keyframes fadeInOut {
            0% { opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { opacity: 0; }
        }

        .tekst-container {
            position: relative;
            z-index: 1;
            max-width: 900px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            margin: 80px auto 100px;
            padding: 40px 30px;
            line-height: 1.6;
            border-radius: 10px;
        }

        .tekst-container h1 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .tekst-container p {
            font-size: 16px;
            margin-bottom: 15px;
        }


/* Basisinstellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
    background: url('natuur.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Navigatiebalk */
nav {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Hamburger knop */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
    padding: 10px;
}

/* Hoofdmenu */
.hoofdmenu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hoofdmenu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: color 0.2s ease;
}

.hoofdmenu a:hover {
    text-decoration: underline;
}

/* Vlaggen / taalkeuze */
.taalkeuze {
    display: flex;
    gap: 4px;
    font-size: 0;
}

.taalkeuze a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.taalkeuze img {
    width: 20px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.taalkeuze img:hover {
    transform: scale(1.1);
}

/* Hero (alleen homepage) */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
}

/* Contentbox stijl (o.a. ritten, pension etc.) */
.ritten, .vrienden-container, .paardenpagina {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 30px;
    line-height: 1.7;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

/* Ritten */
.ritten h1, .vrienden-container h1, .paardenpagina h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.ritten h2 {
    font-size: 22px;
    color: #ffd700;
    margin-top: 40px;
}

.ritten p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Tarieftabel */
.tarieftabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.tarieftabel th, .tarieftabel td {
    border-bottom: 1px solid #666;
    padding: 12px 16px;
    text-align: left;
}

.tarieftabel th {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    font-weight: bold;
    font-size: 18px;
}

.tarieftabel td {
    color: #fff;
    font-size: 16px;
}

.tarieven-info {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Contactformulier */
.contactformulier {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contactformulier input,
.contactformulier textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #ccc;
}

.contactformulier textarea {
    resize: vertical;
    min-height: 120px;
}

.contactformulier input::placeholder,
.contactformulier textarea::placeholder {
    color: #ddd;
}

.contactformulier button {
    align-self: flex-start;
    background-color: #ffd700;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contactformulier button:hover {
    background-color: #e5c100;
}

/* Paardenpagina navigatie */
.grote-afbeelding {
    position: relative;
    margin-top: 30px;
}

.grote-afbeelding img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.1);
}

.grote-afbeelding #paard-naam {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
}

.pijl-links,
.pijl-rechts {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 32px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
}

.pijl-links:hover,
.pijl-rechts:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.pijl-links {
    left: 10px;
}

.pijl-rechts {
    right: 10px;
}

/* Knoppen op onze_vrienden.php */
.vrienden-knoppen {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.vriend-knop {
    background-color: #ffd700;
    color: #000;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease;
}

.vriend-knop:hover {
    background-color: #ffcc00;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: auto;
}

/* Sticky wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ======================== */
/* === RESPONSIVE STIJL === */
/* ======================== */

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

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .ritten, .vrienden-container, .paardenpagina {
        margin: 30px 10px;
        padding: 25px 20px;
    }

    .hoofdmenu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
        background-color: rgba(0,0,0,0.7);
        padding: 10px;
        border-radius: 8px;
        width: 100%;
    }

    .hoofdmenu.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .tarieftabel th,
    .tarieftabel td {
        font-size: 14px;
        padding: 10px;
    }

    .vriend-knop {
        padding: 14px 20px;
        font-size: 16px;
    }

    .taalkeuze {
        margin-top: 15px;
        justify-content: center;
    }
}

/* Bestaande styles bovenaan zoals jij al hebt... */

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Menu responsive maken */
@media (max-width: 768px) {
  .menu-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hoofdmenu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 15px;
  }

  .hoofdmenu a {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .menu-container.active .hoofdmenu {
    display: flex;
  }

  .taalkeuze {
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}