* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #fffaf5;
    color: #2c2c2c;
    padding: 20px;
}

header {
    background-color: #f4e3d7;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

header h1 {
    font-size: 2.5em;
    color: #ab5039;
}

header p {
    font-size: 1.2em;
    color: #444;
}


..logo {
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slogan {
    position: absolute;
    bottom: 20px;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    color: #65303E;
    font-family: 'arial black', arial;
}

a:hover,
a:focus {
    text-decoration: underline; /* onderstreept bij hover of focus */
}

nav {
    background-color: #f4e3d7;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 10px;
}

section h2 {
    font-size: 1.8em;
    color: #ab5039;
    margin-bottom: 10px;
}

section ul {
    list-style: none;
    margin-bottom: 10px;
}

section ul li {
    margin: 5px 0;
}

a {
    color: #ab5039;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 0.9em;
    color: #777;
}

.contactblok {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contactgegevens {
  flex: 2;
}

.contactfoto {
  flex: 1;
}

.contactfoto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


@media (max-width: 600px) {

    /* Navigatie mobiel centreren */
    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

 }@media (max-width: 600px) {

    /* Navigatie mobiel gecentreerd */
    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    /* LOGO: midden bovenin */
    .logo {
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90px !important;
        height: 90px !important;
        z-index: 2;
        border-radius: 50%;
        border: 3px solid white;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* SLOGAN: midden onderin */
  .slogan {
      font-size: 0.9rem !important;
      position: absolute !important;
      bottom: 20px;
      right: 10px;
      transform: none !important;
      max-width: 90%;
      text-align: right;
    }

    header img {
        max-height: 250px;
        object-fit: cover;
        width: 100%;
        display: block;
    }

    section {
        margin: 20px auto;
        padding: 0 10px;
    }

    section h2 {
        font-size: 1.4em;
    }

    section ul {
        padding-left: 20px;
    }

    section ul li {
        font-size: 0.95em;
    }

    footer {
        padding: 10px;
    }
}