
* {
    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;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

nav li {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}

nav li.active,
nav li:hover {
    background: #555;
}

nav a {
    color: inherit;
    text-decoration: none;
}

.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;
    /* text-align: center;  verwijderd zodat titel links uitgelijnd is */
}

h1 {
    font-size: 36px;              /* behoud je huidige grootte */
    font-family: Georgia, serif;  /* Georgia font */
    color: #404654;               /* gewenste tekstkleur */
    border-bottom: 3px solid #af3535;
    display: inline-block;
    margin-bottom: 50px;
}
.services {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    color: #2ecc71;
    font-weight: bold;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #000;
    margin-bottom: 15px;
}

.description {
    font-size: 15px;
    margin-bottom: 10px;
}

.underline {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.underline .line {
    flex-grow: 1;
    height: 3px;
    background: #af3535;
    margin-right: 6px;
}

.underline .star {
    font-size: 18px;
}

.reserve-wrapper {
    margin-top: 60px;
}

.reserve-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 63vh;
}

.reserve-btn:hover {
    background: #000;
}

/* 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) */
}

