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

body {
    font-family: "Noto Sans", sans-serif;
    width: 100%;
    min-width: fit-content;

    display: grid;
    grid-template-columns: 1fr min(1000px, 96vw) 1fr;
    grid-template-rows: auto;
    grid-template-areas: 'header header header' 
                        'main main main' 
                        'footer footer footer';
}

main {
    min-height: calc(100vh - 125px);
    grid-area: main;
}

hr {
    border: 1px solid black;
}

h1 {
    font-size: 3rem;
}

a:hover {
    cursor: pointer;
}

table {
    border-spacing: 0;
}

img {
    object-fit: cover;
}

#burger-menu-label {
    display: none;
}

.main-margin {
    width: min(1000px, 96vw);
    margin: 0 auto;
}



/* Header and Footer */
header {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    height: 100px;
    font-size: 24px;
    grid-area: header;
    z-index: 9;
    position: unset;
    top: 0;
    width: 100%;
}


header.sticky {
    transition: all 0.5s;
}

header ul {
    display: flex;
    gap: 3rem;
}

footer {
    font-size: 18px;
    box-shadow: 5px -3px 5px rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
    grid-area: footer;
}

header, footer {
    background-color: #F69B37;
}

header a:hover, header a:active {
    text-decoration: underline;
}

#footer-logo {
    height: 140px;
}

#footer-info {
    width: 100%;
    padding-top: 10px;
}

header nav a {
    padding: 20px;
    margin: -20px;
}



/* Blocks */
.block > p {
    justify-self: center;
    font-size: 16px;
}
.block {
    align-items: center;
}
.block > * {
    width: 475px;
}

.block > img {
    height: calc(2/3 * 475px);
    border-radius: 15px;
}


/* Flexbox */
.flex {
    display: flex;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-reverse {
    display: flex   ;
    flex-direction: row-reverse;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.space-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 1rem;
}
.gap-50 {
    gap: 40px;
}
.gap-100 {
    gap: 100px;
}


/* Tools */
.center-text {
    text-align: center;
}
.no-decoration {
    list-style: none;
    text-decoration: none;
    color: inherit;
}
.wrap-height {
    height: 100%;
}
.wrap-width {
    width: 100%;
}

.shadow {
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.15);
}

.hidden {
    display: none;
}


/* Margins and Paddings */
.margin-10 {
    margin: 10px;
}
.margin-10-y {
    margin: 10px 0;
}
.padding-50-0 {
    padding: 40px 0;
}
.padding-100-0 {
    padding: 100px 0;
}


/* Zoom functionality */
.img-overlay {
    transition: all 0.25s ease-in-out;
    position: fixed;
    object-fit: contain;
    z-index: 10;
}

.zoom:hover, .zoomed:hover {
    cursor: pointer;
}


/* Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 0;
}

.masonry-grid img {
    width: 100%;
    display: block;
}



/* Slideshow */
#slideshow-wrap {
    overflow: hidden;
    position: relative;
    height: calc(9 / 16* 1000px);
}

#slides-wrap {
    height: 100%;
    transition: all 0.5s;
}

#slideshow-wrap img {
    width: 1000px;
    height: 100%;
    object-fit: cover;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.15);
}

#prevSlide, #nextSlide {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;

    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.5s;
    font-size: 64px;
}

@media (hover: hover) {
    #prevSlide:hover, #nextSlide:hover {
        background-color: rgba(255, 255, 255, 0.5);
        color: black;
        cursor: pointer;
    }
}

#prevSlide {
    left: 0;
}
#nextSlide {
    right: 0;
}

#footer-info img {
    width: 45px;
}


@media screen and (max-width: 480px){
    #prevSlide, #nextSlide {
        background-color: rgba(255, 255, 255, 0.2);
        color: rgba(0, 0, 0, 0.7);
    }
    header {
        height: 80px;
        font-size: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .padding-50-0 {
        padding: 25px 0;
    }

    .gap-50 {
        gap: 25px;
    }

    header ul {
        display: none;
    }

    #burger-menu-label {
        display: flex;
        transition: all 0.5s;
    }

    #burger-menu-checkbox:checked ~ #burger-menu-label {
        transform: rotate(90deg);
    }

    #slideshow-wrap img {
        width: 100vw;
    }


    footer {
        height: fit-content;
        font-size: 16px;
    }

    footer .gap-1 {
        gap: 0;
    }

    #footer-adress {
        margin: 0 10px;
    }


    #footer-logo {
        height: unset;
        width: 40%;
        margin: 10px;
        object-fit: contain;
        margin-top: auto;
    }

    #rights {
        font-size: 13px;
    }

    .main-margin, .main-for-aboutus, .main-for-menu {
        width: 100% !important;
        margin: 0 !important;
    }
    #burger-menu-checkbox ~ ul {
        top: -900px;
        transition: all 0.5s;
        position: absolute;
        display: flex;
        width: 100%;
        background-color: #F69B37;
        flex-direction: column;
        font-size: 24px;
        gap: 0;
        left: 0;
    }

    #burger-menu-checkbox ~ ul li a {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid black;
        margin: 0;
        z-index: 10;
        display: block;
    }

    #burger-menu-checkbox:checked ~ ul {
        top: 80px;
    }

    #footer-info {
        flex-direction: column;
        font-size: 15px;
    }

    header label {
        padding: 20px;
    }

    .masonry-grid {
        column-count: 2;
    }


    .block > img {
        width: 80vw;
        height: calc(5/6 * 80vw);
    }

    .block > * {
        width: 85vw;
        font-size: 17px !important;
        text-align: center;
    }

    #slideshow-wrap {
        height: calc(9/16 * 100vw);
        width: 100vw;
    }

    #slides-wrap figure {
        width: 100vw;
    }

    #prevSlide, #nextSlide {
        font-size: 48px;
        width: 80px;
    }
    

    .block {
        flex-direction: column !important;
    }



    .main-for-aboutus, .main-for-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 25px 0 !important;
        gap: 25px;
    }

    .main-for-menu {
        gap: 0;
    }

    .h1-for-aboutus {
        padding: unset !important;
        justify-self: center;
        text-align: center;
    }

    #h2-for-aboutus {
        font-size: 18px !important;
        margin-bottom: -20px;
        width: 95vw;
    }

    #exceptional-p-for-aboutus {
        width: 95vw;
        margin-bottom: unset !important;
    }

    .class-for-aboutus-1, .class-for-aboutus-2 {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .class-for-aboutus-1 img, .class-for-aboutus-2 img {
        width: 85vw !important;
        height: calc(3/4 * 85vw) !important;
        border-radius: 10px !important;
        order: 1 !important;
    }

    .class-for-aboutus-1 article, .class-for-aboutus-2 article {
        width: 90vw !important;
        order: 2 !important;
    }

    video {
        width: 100vw !important;
        padding: unset !important;
    }

    br {
        display: none;
    }

    #ye-menu-foto {
        width: 100vw !important;
    }

    
    .class-for-menu {
        font-size: 15px !important;
        background-color: #F5F5F5;
    }

    .italicp-for-menu {
        font-size: unset !important;
    }

    .class-for-menu, .h1-for-menu {
        padding: 0 2% !important;
    }

    .phone-only {
        display: block !important;
    }

    .h1-for-menu {
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .main-for-menu > h1.center-text{
        margin-bottom: 25px;
    }

    .p-for-menu {
        border-bottom: none !important;
    }

}

/* Codes for Home Webpage */
.home-img-txt {
    margin: 2.1vw 0vw;
}



/* Codes for Menu webpage */
 .main-for-menu {
    margin: 0 auto;
    width: 1000px;
} 

#ye-menu-foto {
    width: 1000px;
}

.class-for-menu {
    flex-direction: column;
    font-size: 1.2vw;
    
}
 
.p-for-menu {
    margin-bottom: 1.7vw;
    border-bottom: 1px dotted black;
    
} 

.italicp-for-menu {
    font-style: italic;
    font-size: 1.35vw;
}

@media screen and (min-width: 768.1px) {
   

    #ye-menu-foto {
        width: 1000px;
        border-top: 1px solid black;
    }

    .class-for-menu {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        font-size: 1.2vw;
        background-color: #f5f5f5; 
        /* gap: 15px;  */
    }

    .class-for-menu article {
        width: 19vw;
    }

    .class-for-menu h2 {
        font-size: 1vw;
    }

    .italicp-for-menu {
        font-style: italic;
        font-size: 0.8vw;
    }

    /* p {
        padding: 5px;
    } */
    
    .p-for-menu {
        margin-bottom: 1vw;
        border-bottom: none;
        font-size: 1vw;
        
    }

    .h1-for-menu {
        padding: 25px 0px 15px 0px;
        font-size: 2vw;
    }


    .space-with-footer {
        margin-bottom: 30px;
    }
    

  }





/* Codes for About-us webpage */

.h1-for-aboutus {
    align-items: center;
    /* padding-top: 0.8vw; */
}

.class-for-aboutus-1 img, .class-for-aboutus-2 img {
    height: calc(475px * 2/3);
    width: 475px;
    border-radius: 15px;
}

.class-for-aboutus-1 img{
    order: 2;
   
}

.class-for-aboutus-1 {
    display: flex;
    flex-direction: column;
   
}

video {
    padding: 0vw 0vw 1vw 0vw;
    width: 100%;
}

#exceptional-p-for-aboutus {
    margin-bottom: 4.5vw;
}


@media screen and (min-width: 768.1px) { 

    .class-for-aboutus-1, .class-for-aboutus-2 {
        display: flex;
        flex-direction: row;
        gap: 50px;
        padding-bottom: 3.4vw;
    
    }

    .class-for-aboutus-1 img{
        order: 1;
       
    }

    .class-for-aboutus-1 article{
        order: 2;
       
    }

    .class-for-aboutus-1 article , .class-for-aboutus-2 article {
        width: 475px;
        margin: auto ;  
    }

    #h2-for-aboutus {
        font-size: 20px;
        width: 1000px;
        
    }

    .class-for-aboutus-1 article p , .class-for-aboutus-2 article p {
        font-size: 16px;
    }

    


    /* styling for Reserving webpage*/
    
    .reserveren-p {
        font-size: 23px;
        width: 780px;
        margin: 0 auto;
    }

    #reserveren {
        width: 780px;
        margin: 0 auto;
        padding: 20px 10px 0px 10px;
        font-size: 23px;
        background-color: #F69B37;
        border-radius: 16px;
    }

    #reservation-overview {
        width: 90%;
        margin: 0 auto;
        font-size: 20px;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 10px;
    }

    #reservation-overview p {
        padding: 5px;
        
    }

    .reserveren-sec {
        display: flex;
        padding: 0px 0px 25px 0px;
        justify-content: space-between;
        width: 720px;
        margin: 0 auto;

    }

    .reserveren-sec input {
        width: 500px;
        height: 34px;
        border: 0.8px solid black;
        border-radius: 8px;
        
    }

    .reserveren-sec label {
        margin-right: 10px;
        width: 230px;
    }

    #date-time {
        display: flex;
        justify-content: space-between;
        width: 720px ;
        margin: 0 auto;
        padding: 0px 0px 20px 0px;

    }

    #date-time label, #aantalPersonenBox label {
        padding-right: 25px;
    }

    #date-time input {
        width: 175px;
        font-size: 18px;
        height: 29px;
        border: 0.8px solid black;
        border-radius: 5px ;
    }

    #date-time select {
        width: 145px;
        font-size: 18px;
        height: 29px;
        border: 0.8px solid black;
        border-radius: 5px ;
    }

    #aantalPersonenBox {
        width: 720px ;
        margin: 0 auto;
        padding: 0px 0px 20px 0px;
    }

    #aantalPersonenBox select {
        width: 85px;
        font-size: 18px;
        height: 29px;
        border: 0.8px solid black;
        border-radius: 5px ;
    }

    #accepteerBox {
        width: 720px ;
        margin: 0 auto;
        padding: 30px 0px 23px 0px;
    }

    #accepteerBox input {
        height: 20px;
        width: 20px;
    }

    #accepteerBox input:hover {
        cursor: pointer;
    }

    #submit-knop-res {
        text-align: center;
    }

    #submit-knop-res input {
        width: 40%;
    }

    .privacy {
        font-size: 20px;
        padding-left: 30px;
        width: 860px;
        margin: 0 auto;
    }

}


@media screen and (min-width: 481px) and (max-width: 768px) {

    * {
        margin: 0;
        padding: 0;
    }

    body {
        width: 768px;
    }    
    
    
    
    /* Styling for Header and Footer */

     .tablet-header {
        width: 768px !important;
        height: 100px;
    }

    .tablet-header section {
        width: 700px !important;
        margin: 0 auto;
    }

    .main-margin {
        width: 768px;
    }

    header ul {
        display: flex;
        gap: 17px;
        margin-right: 12px;
    }

     #header-img-sty {
        width: 220px;
        height: 100px;
     }

    
     footer {
        width: 768px ;
    }

     #footer-right {
        display: block;
     }

     .tablet-footer {
        width: 700px !important;
        margin: 0 auto;
     }

     #footer-logo {
        height: 100px;
    }
    
    #footer-info {
        width: 100%;
        padding-top: 10px;
    }

     
    
    
    /* styling for Home Webpage */

     .tablet-only {
        display: none;
     }

     .tablet-home-main {
        width: 700px !important;
        margin: 0 auto;
     }

     #slideshow-wrap {
        width: 700px;
        height: calc(700px* 4/7);
       
     }

     #slideshow-wrap img {
        width: 700px;
        height: 100%;
        object-fit: cover;
        box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.15);
        
    }

     .home-img-txt {
        margin-top: 5px ;
        width: 700px;
        gap: 17px;
     }

     .home-img-txt img{
        border-radius: 15px;
        width: 250px;
        height: calc(250px* 2/3);
     }

     .home-img-txt p {
        font-size: 14px;
        /* padding: 4px auto; */
        
     }



     /* styling for About Webpage */

     .main-for-aboutus {
        margin: 0 auto;
        width: 700px !important;
    }

    .h1-for-aboutus {
        display: none;
    }

    .main-for-aboutus video {
        margin: 40px auto 0px auto;
        width: 700px !important;
        
    }

    #h2-for-aboutus {
        font-size: 18px;
    }

    #exceptional-p-for-aboutus {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .class-for-aboutus-1, .class-for-aboutus-2 {
        display: flex;
        flex-direction: row;
        gap: 32px;
        padding-bottom: 12px;
        margin-top: 17px; 
    
    }

    .class-for-aboutus-1 img{
        order: 1;
        width: 250px;
        height: calc(250px* 2/3);
       
    }

    .class-for-aboutus-2 img{
        width: 250px;
        height: calc(250px* 2/3);
       
    }

    .class-for-aboutus-1 article{
        order: 2;
       
    }

    .class-for-aboutus-1 article, .class-for-aboutus-2 article {
        width: 480px;
        height: 230px;
        padding-top: 5px;   
    }

    .class-for-aboutus-1 article p, .class-for-aboutus-2 article p {
        font-size: 14px; 
    }



    /* Styling for Menu */
    .main-for-menu {
        margin: 0 auto;
        width: 700px;
    }

    .class-for-menu {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        font-size: 14px;
        background-color: #f5f5f5;
        gap: 10px; 
        padding-top: 8px;
        margin-bottom: 15px;
        width: 700px;
        margin: 0 auto;
    }

    .phone-only {
        display: none;
    }

    #ye-menu-foto {
        margin: 40px auto 0px auto;
        width: 700px;
    }

    .class-for-menu article {
        width: 225px;
        border: solid black 1px; 
    }

    .class-for-menu h2 {
        font-size: 17px;
        border-bottom: solid black 1px;
        text-align: center;
    }

    .italicp-for-menu {
        font-style: italic;
        font-size: 14px;
    }

    .h1-for-menu {
        padding-top: 25px; 
        padding-bottom: 10px;
        font-size: 28px;
    }

    .p-for-menu {
        border-bottom: none;
        font-weight: bold;
        padding-top: 8px;
        text-align: center;
    }

    .space-with-footer {
        margin-bottom: 40px;
    }


    /* Styling for Gallery */

    .masonry-grid {
        margin: 0 auto;
        width: 768px;
    }

    .tab-gallerij {
        padding: 50px auto;
        margin-top: 10px;
        
    }


     /* styling for Reserving webpage*/
     .main-reserve {
        margin: 0 auto;
        width: 700px;
    }

    .reserveren-p {
        font-size: 20px;
        margin: 0 auto;
    }

    #reserveren {
        width: 700px;
        margin: 0 auto;
        padding: 20px 10px 0px 10px;
        font-size: 20px;
        background-color: #F69B37;
        border-radius: 19px;
    }

    #reservation-overview {
        width: 700px;
        margin: 0 auto;
        font-size: 20px;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 10px;
    }

    #reservation-overview p {
        padding: 5px;
        
    }

    .reserveren-sec {
        display: flex;
        padding: 0px 0px 25px 0px;
        justify-content: space-between;
        width: 650px;

    }

    .reserveren-sec input {
        width: 400px;
        height: 34px;
        border-radius: 7px;
        border: 1px solid;
    }

    .reserveren-sec label {
        margin-right: 10px;
        width: 230px;
    }

    #date-time {
        display: flex;
        justify-content: space-between;
        width: 650px ;
        padding: 0px 0px 20px 0px;

    }

    #date-time label, #aantalPersonenBox label {
        padding-right: 25px;
    }

    #date-time input {
        width: 165px;
        font-size: 18px;
        height: 29px;
    }

    #date-time select {
        width: 145px;
        font-size: 18px;
        height: 29px;
    }

    #aantalPersonenBox {
        width: 650px ;
        padding: 0px 0px 20px 0px;
    }

    #aantalPersonenBox select {
        width: 85px;
        font-size: 18px;
        height: 29px;
    }

    #accepteerBox {
        width: 650px ;
        padding: 30px 0px 23px 0px;
        font-size: 19px;
    }

    #accepteerBox input {
        height: 20px;
        width: 20px;
    }

    #accepteerBox input:hover {
        cursor: pointer;
    }

    #submit-knop-res {
        text-align: center;
        padding: 30px 0px 23px 0px;
        width: 685px;

    }

    #submit-knop-res input {
        width: 405px;
        height: 42px;
        font-size: 20px;
        background-color: white;
        border-radius: 10px;
        border-width: 0;
    }

    #submit-knop-res input:hover {
        box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.15);
        background-color: #2B98DE;
        color: white;
        cursor: pointer;
    }

    .privacy {
        font-size: 20px;
        padding-left: 30px;
        width: 650px;
    }



    /* Styling for Privacy webpage */

    .main-for-privacy {
        width: 700px;
        margin: 0 auto;
    }

    .main-for-privacy h1 {
        font-size: 34px;
    }

    .privacy {
        font-size: 20px;
    }



}


/* Styling for Reserving webpage

*/
@media screen and (max-width: 480px) {

    .reserveren-p, form#reserveren, #reservation-overview {
        width: 95vw;
        margin: 0 auto;
    }
    .reserveren-p {
        font-size: 20px;
        font-weight: 600;
    }
    form#reserveren {
        display: flex;
        flex-direction: column;
        gap: 10px;
        
        padding: 10px;
        border-radius: 10px;
        background-color: #F69B37;

        font-size: 22px;
    }

    form#reserveren section {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    #date-time {
        flex-direction: row !important;
        gap: 20px !important;
    }

    #date-time section {
        width: 47%;
    }

    #aantalPersonenBox {
        width: fit-content;
    }

    #aantalPersonenBox select {
        width: 100%;
    }

    #accepteerBox {
        flex-direction: row !important;
        font-size: 18px;   
        gap: 10px !important;
    }

    form#reserveren input, select {
        height: 40px;
        border-radius: 5px;
        border-width: 0;
        padding: 0 10px;

        font-size: 20px;
    }

    form#reserveren input[type="submit"] {
        height: 50px;
        border-radius: 30px;
        border-width: 2px;
        font-size: 24px;
    }

    #accepteer {
        width: 40px !important;
        height: 40px !important;
        margin: auto 0 !important;
    }

    #accepteerBox label {
        flex: 1;
    }

    #reservation-overview {
        font-size: 20px;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 10px;
    }

    .privacy {
        font-size: 20px;
        padding-left: 30px;

        width: 95vw;
    }

    #datum, #time { 
        font-size: 5vw !important;
    
    }
}


@media screen and (min-width: 768.1px) and (max-width: 1024px) {
    .tablet-only {
        display: block;
    }

    .phone-only {
        display: none;
    }

    nav {
        margin-right: 10px;
    }

    header ul {
        gap: 3vw;
        font-size: 3vw;
    }
}




/* Arrangementen */

#arrangementen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 10px; 
}

#arrangementen-grid article {
    border-radius: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

#arrangementen-grid article img {
    width: 100%;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#arrangementen-grid article span {
    display: flex;
    justify-content: space-between;
}

#arrangementen-grid article > p {
    font-size: 1rem;
    margin: auto;
}

#arrangementen-grid article span p {
    margin: auto;
    font-size: 1.25rem;
    font-weight: 500;
}

#arrangementen-grid article:hover {
    cursor: pointer;
    transform: scale(1.01);
    background-color: #f0f0f0;
}


/* Stylings for Vacature web-pagina */

/* Create a column layout with Flexbox */
.row {
    display: grid;
  }
  
  /* Left column (menu) */
  .left {
    padding: 15px 0;
    /* background-color:#bbb; */
    background-color: #2D82BD;
  }
  
  .left h2 {
    padding-left: 8px;
  }
  
  /* Right column (page content) */
  .right {
    padding: 15px;
    background-color:inherit;
  }
  
  /* Style the search box */
  #mySearch {
    width: 100%;
    font-size: 18px;
    padding: 11px;
    border: 1px solid #ddd;
  }
  
  /* Style the navigation menu inside the left column */
  #myMenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
  }
  
  #myMenu li a {
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block;
  }
  
  #myMenu li a:hover {
    background-color: #eee;
  }

  /* style for the contents in the right side */
  .vacature-sec {
    display: grid;
    grid-template-rows: 2fr 250px 37px;
    margin-bottom: 35px;
  }

  .img-vacature {
    width: 100%; 
    height: 100%;
    border-radius: 16px;
  }

  .vacature-art-img {
    margin: 15px 12px 0px 0px;
  }

  .vacature-art-cont p {
    margin: 10px 0px;
  }

  .vacat-head {
    font-size: 29px;
  }

  #vacat-p {
   padding-left: 8px;
  }

  .vacat-anchor {
    margin-top: 13px;
  }

  .vacat-anchor a {
    color: #2B98DE;
    font-size: 18px;
    text-decoration: none;
    margin-top: 15px;
  }




  @media screen and (min-width: 481px) and (max-width: 768px)  {

    .row {
        display: grid; /* Change to grid */
        grid-template-columns: 30% 70%; /* Set column widths */
      }
      
      /* Left column (menu) */
      .left {
        padding: 15px 0;
        background-color:#bbb;
        /* background-color: #2D82BD; */
        border-top-left-radius: 16px;
        /* border-bottom-right-radius: 16px; */
      }
      
      .left h2 {
        padding-left: 8px;
      }
      
      /* Right column (page content) */
      .right {
        padding: 15px;
        background-color: #ddd;
        border-top-right-radius: 16px;
        /* border-bottom-right-radius: 16px; */
      }

      /* style for the contents in the right side */
      .vacature-sec {
        display: grid;
        grid-template-rows: 2fr 250px 37px;
        margin-bottom: 35px;
      }
    
      .img-vacature {
        width: 100%; 
        height: 100%;
        border-radius: 16px;
      }
    
      .vacature-art-img {
        margin: 15px 12px 0px 0px;
      }

      .vacature-art-cont p {
        margin: 10px 0px 3px 0px;
      }
    
      .vacat-head {
        margin: 18px 0px;
        font-size: 30px;
      }

      
    
    
} 

@media screen and (min-width: 768.1px)  {

    .row {
        display: grid; /* Change to grid */
        grid-template-columns: 30% 70%; /* Set column widths */
      }
      
      /* Left column (menu) */
      .left {
        padding: 15px 0;
        background-color:#bbb;
        border-top-left-radius: 16px;
      }
      
      .left h2 {
        padding-left: 8px;
      }
      
      /* Right column (page content) */
      .right {
        padding: 15px;
        background-color: #ddd;
        border-top-right-radius: 16px;
      }
      
      /* Style the navigation menu inside the left column */
      #myMenu {
        display: block;
      }
      
      /* Style for the contents in the right side */
      .vacature-sec {
        display: grid; /* Change to grid */
        grid-template-rows: 2fr 340px 37px;
        margin-bottom: 35px;
      }
      
      .img-vacature {
        width: 100%; 
        height: 100%;
        border-radius: 16px;
      }
      
      .vacature-art-img {
        margin: 15px 12px 0px 0px;
      }
      
      .vacature-art-cont {
        margin: 0;
      }
      
      .vacature-art-cont p {
        margin: 10px 0px;
      }
      
      .vacat-head {
        margin: 18px 0px;
        font-size: 30px;
      }
}



.review {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px;
    background-color: #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    margin: 10px;
}

.review img {
    height: 50px;
    width: 50px;
    border-radius: 99px;
    border: 1px transparent rgba(0, 0, 0, 0.1);
}


#reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#reviews form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;

    padding: 20px;
    border-radius: 15px;
    background-color: #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#reviews form input[type="text"] {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);

    transition: all 0.2s;
    font-size: 1.25rem;
    width: 35%;
}

@media screen and (max-width: 480px){
    #reviews form input {
        width: 100%;
    }
}

#reviews form textarea {
    resize: none;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);

    transition: all 0.2s;
    font-size: 1.25rem;

    font-family: "Noto Sans", sans-serif;

}

#reviews form input[type="submit"] {
    width: 100%;
}



#openDropDown {
    display: flex;
    justify-content: center;
}



#openDropDown:hover #dropdown {
    opacity: 1;
    height: auto;
    display: flex;
}

.dropdown { 
    opacity: 0;
    display: none;
    flex-direction: column;
    transition: 0.5s;
    position: absolute;
    height: 0;
    top: 4.80rem;

    background-color: #F69B37;
    padding: 0;
    margin: 0;
    list-style-type: none;
    z-index: 1;

    border-radius: 10px;
}

ul.dropdown li {
    padding: 10px;
    width: 100%;
    text-align: center;
}

ul.dropdown {
    gap: 0.5rem;
    margin-top: 1rem;
}


@media screen and (max-width: 768px){
    .dropdown {
        top: 2rem;
    }
    #openDropDown {
        position: relative;
    }
    
}

@media screen and (min-width: 768px) and (max-width: 1100px){
    .dropdown {
        right: 0;
    }
    
}

@media screen and (max-width: 480px){
    .dropdown {
        display: unset;
        position: relative;
        height: auto;
        top: unset;
        opacity: 1;
        margin-top: 0 !important;
        width: 100%;
    }

    .dropdown li {
        padding: 0 !important;
    }

    #openDropDown > a {
        display: none !important;
    }
}


/*Stylings for Dranken webpagina*/
#dranken-flex {
    display: flex;
    flex-wrap: wrap;
  }

#dranken-flex article {
flex: 1 0 300px; 
margin: 15px; 
border-radius: 15px;
padding: 10px;
background-color: #f5f5f5;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
transition: all 0.2s;
display: flex;
flex-direction: column;
}

#dranken-flex article > h2 {
    margin-bottom: 15px;
}



#dranken-flex article img {
    width: 100%;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

#dranken-flex article span {
    display: flex;
    justify-content: space-between;
}

#dranken-flex article > p {
    font-size: 1rem;
    margin: auto;
}

#dranken-flex article span p {
    margin: auto;
    font-size: 1.25rem;
    font-weight: 500;
}

#dranken-flex article:hover {
    cursor: pointer;
    transform: scale(1.01);
    background-color: #f0f0f0;
}


.price- {
    font-size: 1.5rem !important;
    margin: 10px auto !important;
}

button, input[type="submit"] {
    cursor: pointer;
    background-color: #04AA6D;
    border: 2px solid #04AA6D; 
    color: white;
    padding: 12px 32px;
    margin: 6px 0px 14px 0px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 12px;
    transition-duration: 0.4s;
}

button:hover, input[type="submit"]:hover {
    background-color: white;
    border: 2px solid #04AA6D;
    color: black;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  } 

button:active, input[type="submit"]:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}