body {
    margin: 0;


    background-color: #FFFDF5;
    font-family: 'Poppins', sans-serif;
}

/* Navigatiebar */

nav {
    position:sticky;
    top: 0;
    z-index: 100;
    /* sticky nav bar die altijd boven andere elementen zit*/

    display: flex;
    flex-direction: column;

    border-top: 1rem;
    border-bottom: 1.5rem;
    border-left: 1rem;
    border-right: 1rem;
    border-style: solid;
    border-color: #E79796;
    background-color: #E79796;


}
nav a{
    text-decoration:none;
    color: black;
}
.navText{
    text-decoration:none;
    color: black;
    background-color: #FFC98B;
    border-top: 0.8rem solid #FFC98B;
    border-left: 2.5rem solid #FFC98B;
    border-bottom: 0.8rem solid #FFC98B;
    border-right: 2.5rem solid #FFC98B;
    border-radius: 0.5rem;



}

.navText:hover{

    background-color: #FFB284;
    border-top: 0.8rem solid #FFB284;
    border-left: 2.5rem solid #FFB284;
    border-bottom: 0.8rem solid #FFB284;
    border-right: 2.5rem solid #FFB284;
}

/* Nav alignment */
.naastElkaar {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 1.5rem;
}
.naastElkaar2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


/* Opmaak voor het kopgedeelte */
.new-user{

    text-decoration:none;
    color: black;
    background-color: #FFB284;
    border-top: 0.1rem solid #FFB284;
    border-left: 3.5rem solid #FFB284;
    border-bottom: 0.1rem solid #FFB284;
    border-right: 3.5rem solid #FFB284;
    border-radius: 0.5rem;

    text-align: center;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 2rem;
    margin-bottom: 2rem;

    font-size: 1.5rem;
}
.teruggaan{
    text-decoration:none;
    color: black;
    background-color: #FFC98B;
    border-top: 1rem solid #FFC98B;
    border-left: 3.5rem solid #FFC98B;
    border-bottom: 1rem solid #FFC98B;
    border-right: 3.5rem solid #FFC98B;
    border-radius: 0.5rem;

    text-align: center;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 4rem;

}
.teruggaan:hover{
    background-color: #FFB284;

    border-top: 1rem solid #FFB284;
    border-left: 3.5rem solid #FFB284;
    border-bottom: 1rem solid #FFB284;
    border-right: 3.5rem solid #FFB284;
    margin-top: 4rem;
}
.invulveld{
    margin-bottom: 5rem;
}
.content{
    margin-top: 40vh;

}

/* Ruimte voor inlog*/
.login-space{
    margin-top: 2rem;
}

/* Logo netjes rechts in de container plaatsen */
.logo-container {
    margin-right: auto;
}

/* ALLE AFBEELDINGEN */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icons:hover {
    filter:saturate(150%)
}

.social-icons img {
    max-width: 50px;
    height: auto;
}
.logo{
    max-width: 6rem;
}
.afbeelding{
    min-width: 20vw;
    max-height: 20vw;
    object-fit:cover;
}
.kleineAfbeelding{
    min-width: 6vw;
    max-height: 6vw;
    object-fit:cover;
}
.reserveringsicoon{
    min-width: 1.3rem;
    max-height: 1.3rem;
    margin-right: 1rem;
}
.Afbeelding-reserveringsicoonGeel{
    min-width: 10vw;
    max-height: 10vw;
    object-fit:cover;
}


/* footer  */
.naastElkaarFooter{
    display: flex;
    flex-direction: row;
    gap: 1rem;

}
footer p{
    margin-top: 1.5rem;
}
footer{

    background-color: #C6C09C;
    background-image: url(https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExdDBxOHN1aTN6cG0yZ3A3OXdieWkyaHptNHVkZjFyd3I1dGpmN2x4cyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/RfA606geeWaWP5eyD8/giphy.gif);
    object-fit:cover;

    background-position-x:50%;
    background-position-y: 30%;
    background-size: 12%;
    position: relative;
    background-repeat: no-repeat;
    overflow:hidden;
    max-height: 10rem;
}







/* form */



/* Form container styling */
.styled-form {



    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 33vw;
    margin-left: 33vw;

}

/* Data field styling */
.data-field {
    margin-bottom: 2rem;
}

label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

input {
    width: 90%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
}

.errors {
    color: #ff0000;

    font-size: 1rem;
    margin-top: 1rem;
    display: block;
}

/* Submit button styling */
.data-submit {
    text-align: center;
}

input[type="submit"] {
    background-color: #C6C09C;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Animation for smallZoom effect */
.smallZoom {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.smallZoom:hover {
    transform: scale(1);
}