* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
    min-height: 80px;
    max-height: 80px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav a {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

nav a:hover,
nav a.active {
    background: #555;
}

.login-link {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.login-link:hover {
    background: #555;
}


/* MAIN */
main {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    flex: 1;
}

h1 {
    font-size: 36px;
    font-family: Georgia, serif;
    color: #404654;
    border-bottom: 3px solid #af3535;
    display: inline-block;
    margin-bottom: 50px;
}

.services {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.card {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #0e0e0e;
    margin-bottom: 15px;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #404654;
    margin-bottom: 10px;
}

.location-btn {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

.location-btn:hover {
    background: #555;
}

/* LOCATIE & OVER MIJ WRAPPER */
.location-wrapper {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.location-title {
    text-align: center;
}

/* UNDERLINE */
.underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.underline .line {
    width: 120px;
    height: 3px;
    background-color: #af3535;
}

.underline .star {
    font-size: 18px;
}

/* FOOTER */
/* FOOTER */
footer {
    background: #454545;
    color: #fff;
    padding: 40px 20px;
    border-top: #0e0e0e 3px solid;
}
.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between; /* links - midden - rechts */
    align-items: center;
    gap: 30px;
}



.footer-social img {
    width: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    margin-left: 100px;
}
.footer-contact {
    text-align: center;
}


footer a {
    color: #fff;              /* wit */
    text-decoration: none;    /* geen streepje */
}

footer a:hover {
    color: #ddd;              /* lichtgrijs bij hover (optioneel) */
}