* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}


nav a:hover,
nav a.active {
    background: #555;
}

nav a {
    color: inherit;
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.login-link {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.login-link:hover {
    background: #555;
}


.title-1 {
    margin-top: 30px;
    text-align: center;
    font-size: 40px;k
    font-weight: bold;
    font-family: Georgia ;
}

.underline {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.underline .line {
    margin-left: 380px;
    width: 47vw;
    height: 3px;
    background: #af3535;
    margin-right: 5px;
}

body {
    background-color: white;
}


header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
}


.header {
    margin-top: 100px;
    display: flex;
    gap: 150px;
    margin-left: 100px;
}

.appointment {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
}

.appointment p {
    font-weight: bold;
    width: 170px ;
    color: black;
}


.subtitle-customers {
    margin-top: 70px;
    font-size: 25px;
    margin-left: 250px;
    margin-bottom: 75px;
}

.photo-customers {
    margin-bottom: 150px;
    margin-left: 8vw;
    margin-right: 75px;
    display: flex;
    gap: 130px;
}


.reviews-section {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
}



.title_reviews {
    margin-bottom: 0.5vw;
    font-size: 1.5vw;
}

.reviews-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.review {
    text-align: left;
    margin-bottom: 50px;
    margin-left: 15px;
    padding: 5px;
    border: solid 3px #000;
    border-radius: 10px ;
}

.review h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
}

.review p{
    font-size:1.2rem ;
    color: #666;
    line-height: 1.5;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: darkgoldenrod;
}

.button_reviews {
    margin-top:1vw ;
    display: flex;
    gap: 0.5vw;
    margin-left: 2vw;

}

.read-more {
    display: inline-block;
    padding: 10px 24px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.read-more:hover {
    background-color: #000;
}

.create-review {
    display: inline-block;

    padding: 10px 24px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}


.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time p {
    margin-top: 1vw;
    font-size: 18px;
    font-weight: bold;
}


.opening-time {
    margin-top: 50px;
    margin-left: 400px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.opening-time p{
    display: inline-block;
    padding: 12px 24px;
    background-color: #C0C0C0;
    color: #000000;
    border: none;
    border-radius: 3px;
    font-weight: bold;
}

.days {
    display: flex;
    gap: 27vw;
}


.open-time{
    display: flex;
    gap: 26vw;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY EN LAYOUT */
body {
    background-color: #f5f5f5;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* minimaal schermhoogte */
}

/* Laat main alles tussen header en footer opvullen */
main {
    flex: 1;
}

/* HEADER */
header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
    min-height: 80px;
    max-height: 80px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav a:hover,
nav a.active {
    background: #555;
}

nav a {
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.login-link {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.login-link:hover {
    background: #555;
}

/* TITEL */
.titel {
    margin-top: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    font-family: Georgia;
}

.ondertitel {
    text-align: center;
    font-size: 20px;
}

.error {
    font-weight: bold;
    color: red;
}

/* INLOG FORM */
.inlog_form {
    width: 50vw;       /* originele breedte behouden */
    height: auto;      /* past zich aan inhoud aan */
    border: 2px solid black;
    border-radius: 4px;
    margin: 0 auto;
    padding: 1rem;
}

.inlog_submit {
    padding-top: 3vh;
}

.inlog_buttons {
    display: inline-block;
    width: 50vw;       /* originele breedte behouden */
    padding: 0.75rem 1rem;
    margin-bottom: 1vh;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
footer {
    background: #454545;
    color: #fff;
    padding: 40px 20px;
    border-top: #0e0e0e 3px solid;
    margin-top: auto; /* plakt footer onderaan */
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between; /* links - midden - rechts */
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo svg {
    width: 120px;
}

.footer-contact {
    text-align: center;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        margin-left: 0;
    }

    /* Form breedte iets aanpassen voor smalle schermen */
    .inlog_form,
    .inlog_buttons {
        width: 80vw;  /* kleine schermen */
    }
}
