
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a4f51;
    color: #fff;
    padding-top: 50px; /* of iets hoger, afhankelijk van hoogte van de navbar */
}
.hero {
    background-color: #0a4f51;
    color: white;
    text-align: center;
    padding: 0 0 40px 0;
}
.logo-container {
    background-color: #0a4f51;
    padding: 0;
}
.logo-full {
    width: 100%;
    height: auto;
    display: block;
}
h1 {
    margin-top: 30px;
    font-size: 1.8rem;
}
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: white;
    color: #0a4f51;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
section {
    padding: 60px 20px;
    text-align: center;
}
.service-box {
    margin: 30px auto;
    max-width: 600px;
    border-left: 4px solid #00aaaa;
    padding-left: 20px;
    text-align: left;
}
.contact a {
    color: #80ffff;
    text-decoration: underline;
}
footer {
    background-color: #063839;
    padding: 20px;
    text-align: center;
}
.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
}
.language-switcher a {
  text-decoration: none;
}
/* Navbar basis */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0a4f51;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 1000;
    box-sizing: border-box;
}

/* Linkerkant (menu-items) */
.nav-left {
    display: flex;
    gap: 20px;
}

/* Rechterkant (vlag + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Menu links */
.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

/* Taalvlag */
.language-switch {
    font-size: 20px;
    line-height: 1;
}

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

/* Mobiel menu (dropdown) */

.hidden {
    display: none;
}

/* Responsief gedrag */

@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .hamburger {
        display: inline;
    }

    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .language-switch {
        order: 1;
        font-size: 20px;
    }

    .hamburger {
        order: 2;
    }
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 60px; /* onder de navbar */
    width: 100%;
    background-color: #0a4f51;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 999;
}

.mobile-menu a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    border-top: 1px solid #117070;
}

/* Wanneer zichtbaar (opengeklapt) */
.mobile-menu.open {
    max-height: 300px; /* genoeg voor 3-4 links */
    transition: max-height 0.4s ease-in;
}

.profile {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1rem;
}

.profile-photo {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.profile-text {
    flex: 1;
    min-width: 250px;
}

.about-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.about-text {
    flex: 1 1 60%;
    min-width: 300px;
}

.about-photo {
    flex: 1 1 30%;
    min-width: 220px;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.social-links {
    margin-top: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #0a4f51;
    position: fixed;
    top: 60px; /* of hoogte navbar */
    right: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 999;
}

.mobile-menu.open {
    display: flex;
}
