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

/*fonts importeren, gebruik font-family naam als je de font voor een tekst wilt gebruiken*/
@font-face {
    font-family:'GoldFont';
    src: url('font/Goldoni_DEMO.otf') format('opentype');
}
@font-face {
    font-family:'BakerFont';
    src: url('font/Baskervville-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'BirdFont';
    src: url('font/BirdsofParadise.ttf') format('truetype');
}
@font-face {
    font-family: 'CrimFont1' ;
    src: url('/font/CrimsonText-Regular.ttf') format ('truetype');
}
@font-face {
    font-family: 'CrimFont2';
    src: url('/font/CrimsonText-Bold.ttf') format ('truetype');
}

.navbar {
    background: #FDFAF2;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
    padding: 0 20px;
    font-family: 'GoldFont';  
    box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.2); 
}

.navbar__container {
    display: flex;
    justify-content: space-around;
    height: 80px;
    width: auto;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
    
}

#navbar__logo img { 
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 0%;
    left: 10px;
    width: 200px;
    height: auto;
    transition: width 0.3s ease;
    margin-left: 40px;
}

.navbar__menu {
    display: flex;
    align-items: center;    
    list-style: none;
    text-align: center;
    
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    top: 0;
    z-index: 1;
    overflow: visible;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #FDFAF2; 
    font-family: 'GoldFont', sans-serif;
    padding: 10px 10px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn:hover {
    background-color: #4C5329; /* Verandering van achtergrondkleur bij hover */
}

.chevron {
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #FDFAF2;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

.dropdown-content button {
    background-color: #FDFAF2;
    padding: 10px 15px;
    text-align: left;
    border: none;
    cursor:pointer;
    width: 100%;
}

.dropdown-content button:hover {
    background-color: #4C5329;
    color: azure;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* taakbalk pagina titels als je er over heen gaat worden ze wit */
.navbar__links:hover {
    color: #CD6956;
    transition: all 0.3s ease;
}

.bold {
    font-weight: bold;
}
