@import "reset.css";
@import "https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Parisienne&display=swap";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css";

:root{
    /* COLORS */
    --primary-tint: rgb(183, 228, 233);
    --primary-tint-opac: rgba(183, 228, 233, 0.6);
    --primary-base: rgb(141, 163, 184);
    --primary-base-opac: rgba(141, 163, 184, 0.7);
    --primary-shade: rgb(112, 144, 171);
    --primary-shade-opac: rgba(112, 144, 171, 0.9);
	--primary-font: rgb(63, 82, 121);
    --primary-font-actief: rgb(45, 58, 85);
    --background: rgb(79, 99, 141);
}
html{
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
}
body{
    font: 600 120%/1.6 "Figtree", Arial, sans-serif;
    overflow-x: hidden;
    color: var(--primary-font);
    padding: 0;
    margin: 0;
    max-width: 100vw;
    background: rgba(184, 193, 202) url(../images/background.jpg) center/contain fixed no-repeat;
/*  background-color: linear-gradient(90deg, rgb(226, 226, 226) 0%, rgb(184, 193, 202) 40%, rgb(184, 197, 207) 60%, rgb(226, 226, 226) 100%);*/
    background-blend-mode: darken;
}
h2, h3, h4{
    text-transform: uppercase;
    font: 800 2.2rem/1.6 "Figtree";
    padding-top: .1em;
    margin-left: 20px;
}
h1{
    font: 800 3.6rem/1.6 "Parisienne";
    color: white;
    margin: 10px 10px;
    letter-spacing: 3px;
}
h2{
    margin-left: 10px;
    margin-right: 10px;
}
h3{
    color: white;
    letter-spacing: 3px;
}
h4{
    color: white;
    letter-spacing: 3px;
    color: var(--primary-font);
}

/*-------------------------------------Mainheader--------------------------------*/

.logo{
    margin: 5px 0 0 5px;
    display: inline-block;
    position: absolute;
    z-index: 12;
    max-width: 200px;
    transition: 500ms;
    animation-name: logo;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
	animation-duration: 1s;
	animation-timing-function:ease-out;
}
@keyframes logo {
	0% {
		  transform: scale(50%);
	}
	100% {
		  transform: scale(100%);
	}
}
.logo:hover{
    cursor: pointer;
}

/*------------------------------------- Navigatie ---------------------------------  */

.mainnav{
    text-align: right;
    position: relative;
    z-index: 11;
    padding: .1px;
}
.menu_icon_box{
	display: inline-block;
	width: fit-content;
	height: 50px;
    background: var(--primary-tint-opac);
    border: solid 2px #e8e8e8;
	position: fixed;
	border-radius: 4px;
	cursor: pointer;
	right: 0;
    padding: 11px 8px 0 8px;
	z-index: 20;
    margin: 12px;
	}
.menu_icon_box:hover{
    background: var(--primary-shade-opac);
}
.line1, .line2, .line3{
    display: block;
	width: 40px;
	height: 3px;
	background: var(--primary-font);
	border-radius: 50px;
    margin-bottom: 7px;
}
.active .line1{
    width: 28px;
	transform: translate(0px, 15px)rotate(45deg);
    position: relative;
    left: 7px;
    top: -4px;
    transition: 200ms;
}
.active .line2{
	opacity: 0;
}
.active .line3{
    width: 28px;
	transform: translate(0px, -15px)rotate(-45deg);
    position: relative;
    left: 7px;
    top: 6px;
    transition: 200ms;
}
.active.links{
    right: 0;
    opacity: 1;
    pointer-events: fill;
    transition: 700ms;
}
.links{
    position: fixed;
    right: -100%;
    background: var(--primary-shade-opac);
    width: 180px;
    padding: 100px 10px 10px;
    transition: all 500ms ease-out;
    z-index: 2;
}
.links li:last-child{
    width: 100%;
    padding: 10px;
    background: #006407;
    color: white;
    border-radius: 10px;
    text-align: center;
}
.links li:last-child:hover{
    background:  #00a90c;
    cursor: pointer;
    border: 1px solid black;
}
.menuitem{
    display: block;
    background: var(--primary-tint-opac);
    padding: 15px;
    margin-bottom: .5em;
    color: var(--primary-font);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    line-height: 10px;
    border: 1px solid var(--primary-tint-opac);
    transition: all 500ms;
}
.menuitem:hover{
    color: white;
    border: 1px solid black;
    background-color:  var(--primary-shade-opac);
}
.actief{
    color: white;
    background: var(--primary-shade-opac);
    cursor: default;
}
.actief:hover{
    border: 1px solid var(--primary-tint-opac);
}
.mandje{
    font-size: 1.5rem;
    background: none;
    color: white;
}
.open{
    right:0;
    top: 0;
    transition: right 500ms;
    display: block;
    z-index: 9;
}


/* --------------------------------------------BODY -------------------------------------  */
/*----------------------------------------------------Main----------------------------------*/

.container{
    width: 100%;
    position: relative;
    margin: 0 auto 0 auto;
    overflow-anchor: none;
}
.devider{
    text-align: center;
    margin: 100px 30px;
    display: flex;
    justify-content: center;
}
.devider img{
    width: 50px;
    margin: 0 20px;
    object-fit: contain;
}
.devider span{
    display: inline-block;
    font-size: 30px;
    color: var(--primary-shade);
    font-weight: 900;
}
.responsive-image{
    width: 100%;
    max-width: 100%;
}
.vorige, .volgende{
    color: var(--primary-font);
    transition: all 500ms;
    font-size: 80px;
    margin: 0 10px;
}
.vorige:hover, .volgende:hover{
    color: white;
}
.dotsdiv{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.dot{
    margin: 8px;
}
.dotwhite{
    margin: 8px;
    color: white;
}
.section-ijstaart, .section-catering, .section-verhuur, .section-contact, .section-catalogus {
    background-color: var(--primary-shade);
    width: 97%;
    padding: 30px 10px 50px;
    background-blend-mode:lighten;
    border-radius: 10px;
    margin: 120px auto 0;
    text-align: left;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    object-fit: cover;
    flex-direction: column;
}
.section-ijstaart h3, .section-verhuur h3, section-catering h3, .section-contact h3{
    justify-self: flex-start;
    align-self: flex-start;
}
.section-ijstaart p, .section-catering p, .section-verhuur p, .section-contact p, .section-catalogus p {
    margin: 20px 10px;
}
.section-ijstaart p:first-of-type, .section-catering p:first-of-type, .section-verhuur p:first-of-type, .section-contact p:first-of-type, .section-catalogus p:first-of-type {
    margin-top: 80px;
}
.section-catering button, .section-ijstaart button, .section-verhuur button, .section-contact button{
    margin: 20px auto;
    height: 40px;
    width: 300px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Een subtiele schaduw voor de ruststand */
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    /* Voorkom tekstselectie tijdens het klikken */
  	user-select: none;
    color: var(--primary-font);
    cursor: pointer;
}
.section-catering button:hover, .section-ijstaart button:hover, .section-verhuur button:hover, .section-contact button:hover{
    background: #c4c4c4;
    transform: translateY(2px); /* Lift de knop omhoog */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
  	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}

/*------------------------------------------------SECTION-ASSORTIMENT------------------------------------------*/
.section-assortiment{
    background-color: var(--primary-shade);
    width: 97%;
    padding: 30px 10px 50px;
    border-radius: 10px;
    margin: 120px auto 0 auto;
    text-align: center;
}
.section-assortiment img{
    flex: 1;
    max-width: 250px;
    border-radius: 10px;
    min-width: 150px;
    object-fit: cover;
    margin: 5px;
}
.section-assortiment h1 span{
    color: var(--primary-tint);
}
#assortiment{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    transition: all 500ms;
}
#assortiment img{
    max-width: 200px;
    flex: 1;
    transition: all 500ms;
}
#ijstaarten{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
#first-img-ass, #second-img-ass, #third-img-ass, #fourth-img-ass, #fifth-img-ass{
    height: 300px;
    object-fit: cover;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
	transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#first-img-ass:hover, #second-img-ass:hover, #third-img-ass:hover, #fourth-img-ass:hover, #fifth-img-ass:hover{
	transform: translateY(2px);  /*Lift de knop omlaag */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
  	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}
#second-img-ass, #third-img-ass, #fourth-img-ass, #fifth-img-ass{
    display: none;
}
#section1-1, #section1-2, #section1-3, #section1-4{
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
	animation-duration: 1s;
    animation-timing-function:linear;
    width: 0%;
}
#section1-1{
    animation-name: section1-1;
}
#section1-2{
    animation-name: section1-2;
}
#section1-3{
    animation-name: section1-3;
}
#section1-4{
    animation-name: section1-4;
}
@keyframes section1-1 {
	0% {transform: scale(20%);}
    25% {transform: scale(40%);}
    50% {transform: scale(60%);}
    75% {transform: scale(80%);}
    100% {transform: scale(100%);}
}
@keyframes section1-2 {
	0% {transform: scale(20%);}
    25% {transform: scale(40%);}
    50% {transform: scale(60%);}
    75% {transform: scale(80%);}
    100% {transform: scale(100%);}
}
@keyframes section1-3 {
	0% {transform: scale(20%);}
    25% {transform: scale(40%);}
    50% {transform: scale(60%);}
    75% {transform: scale(80%);}
    100% {transform: scale(100%);}
}
@keyframes section1-4 {
	0% {transform: scale(20%);}
    25% {transform: scale(40%);}
    50% {transform: scale(60%);}
    75% {transform: scale(80%);}
    100% {transform: scale(100%);}
}
/*------------------------------------------------SECTION-CATALOGUS------------------------------------------*/
.section-catalogus h3{
    margin-bottom: 50px;
}
.section-catalogus form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
}
.section-catalogus form p {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 5px;
}
.section-catalogus form p input, .section-catalogus form p label, .section-catalogus form p select{
    flex:1;
    display: inline-block;
    height: 30px;
    max-width: 400px;
    min-height: 30px;
    border-radius: 5px;
	padding: 5px;
	border: hidden;
	border-radius: 4px;
	margin: 0;
    resize: none;
}
.section-catalogus form button{
    flex: 1;
    max-width: 400px;
    margin-top: 20px;
    height: 40px;
    min-height: 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Een subtiele schaduw voor de ruststand */
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    /* Voorkom tekstselectie tijdens het klikken */
  	user-select: none;
    color: var(--primary-font);
    cursor: pointer;
}
.section-catalogus form button:hover{
    background: #b1b1b1;
	transform: translateY(2px); /* Lift de knop omhoog */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
  	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}
.div-catalogus{
    width: 100%;
    padding: 0;
    border-radius: 10px;
    margin: 50px auto;
    display: grid;
    grid-template: repeat(6, 400px) / 1fr 1fr;
    grid-gap: 10px;
}
.productkaart{
    display: grid;
    grid-template: 1fr minmax(5em, auto) / 100%;
}
.productkaart img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: 10px;
}
.productkaart p.top{
    background: rgba(0,0,0,.5);
    grid-row: 1/3;
    grid-column: 1;
    color: white;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    text-align: center;
    height: 40px;
    padding: 0;
    margin: 0;
}
.productkaart p.bottom{
    background: rgba(0,0,0,.5);
    grid-row: 2;
    grid-column: 1;
    color: white;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
    padding: 0;
    margin: 0;
}
.productkaart p button{
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 80%;
    max-width: 200px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid black;
    background: rgba(255,255,255,.5);
    margin: 5px auto; 
    color: black;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Een subtiele schaduw voor de ruststand */
	box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    /* Voorkom tekstselectie tijdens het klikken */
  	user-select: none;
}
.productkaart p button:hover{
    background: rgba(255,255,255,.8);
	transform: translateY(1px); /* Lift de knop omhoog */
	/* De schaduw wordt zachter en groter omdat de knop 'hoger' zweeft */
  	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}

/*------------------------------------------------SECTION-CATERING------------------------------------------*/
.section-catering{
    background: var(--primary-shade) no-repeat right/contain;
    background-image: url(../images/buffet.jpg);
    background-blend-mode:multiply;
    justify-content: flex-start;
    align-items: flex-start;
}
.section-catering h3 span{
    color: var(--primary-font);
    display: block;
}
.section-catering p{
    color: white;
    background: rgba(0,0,0,.3);
    border-radius: 10px;
    padding: 10px;
    width: 98%;
    max-width: 500px;
}

/*------------------------------------------------SECTION-IJSTAART------------------------------------------*/
.section-ijstaart{
    background: var(--primary-shade) no-repeat left/contain;
    background-image: url(../images/Winter%20Birthday.jpg);
}
.section-ijstaart h3 span{
    color: var(--primary-tint);
    display: block;
}
.section-ijstaart p{
    margin: 20px 0 50px;
    color: var(--primary-font);
    background: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 10px;
    width: 98%;
    max-width: 500px;
}

/*------------------------------------------------SECTION-CONTACT------------------------------------------*/
.section-contact{
    background: var(--primary-shade) no-repeat bottom/contain;
    background-image: url(../images/laptop.jpg);
}
.section-contact form{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.section-contact h3 span{
    color: var(--primary-font);
    font-size: 22px;
    display: block;
}
.section-contact p{
    font-size: 16px;
    color: white;
}
.contactdiv {
	margin: 0 2px 5px 0;
	display: flex;
	flex-direction: column;
	transition: 0.5s;
    flex: 1;
}
.contactdiv input[type="text"], .contactdiv input[type="email"], .contactdiv textarea, .contactdiv label, .contactdiv select{
	width: 90%;
	display: inline-block;
	padding: 5px;
	min-width: 300px;
	border: hidden;
	border-radius: 4px;
	margin: 0 auto;
	transition: 0.5s;
    resize: none;
    max-width: 500px;
}
.contactdiv p{
    text-shadow: 1px 1px 2px #121212;
}
.contactdiv label{
	text-align: left;
    padding: 0;
}

/*------------------------------------------------SECTION-VERHUUR------------------------------------------*/
.section-verhuur{
    background: var(--primary-shade) no-repeat left/contain;
    background-image: url(../images/setting.jpg);
}
.section-verhuur h3 span{
    color: var(--primary-font);
    display: block;
}
.section-verhuur p{
    margin: 20px 0 50px;
    color: var(--primary-font);
    background: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 10px;
    width: 98%;
    max-width: 500px;
}

/* -----------------------------------------FOOTER -------------------------------  */

footer{
    margin: 80px 0 0 0;
    background: var(--background);
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
    justify-content: space-between;
}
footer img{
    width: 300px;
    margin-top: 30px;
    align-self: center;
}
#adres{
    flex: 1;
    text-align: left;
}
#footerright{
    display: flex;
    width: 100%;
    text-align: right;
    flex-direction: column;
    justify-content: flex-end;
    align-items:flex-end;
    margin: 0;
    padding: 0 10px;
    align-self: flex-end;
}
#textNB{
    display: inline-block;
    height: 30px;
    border: none;
    margin: 0;
    width: 70%;
    padding: 0 0 0 5px;
}
#submitNB{
    display: inline-block;
    height: 30px;
    border: none;
    color: white;
    background: black;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 6px;
    margin: 0;
    cursor: pointer;
    width: 30%;
}
#submitNB:hover{
    color: grey;
}
#footerright p{
    margin-top: 40px;
    padding: 0 0 0 5px;
}
#footerright form{
    width: 100%;
    margin: 0;
}
.googlemap{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
}
#copywright{
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin: 50px 0 10px 0;
}

/*-----------------------------------------Breakpoints --------------------------------*/

@media screen and (min-width: 600px){
   .div-catalogus{
       grid-template: repeat(6, 400px) / 1fr 1fr 1fr;
    }
    #second-img-ass{
        display: block;
    }
    #textNB{
        width: 220px;
    }
    #submitNB{
        width: 100px;
    }
    #footerright{
        flex: 1;
        justify-content: flex-end;
    }
    #footerright p{
        justify-self: flex-end;
        align-self: flex-end;
        font-size: 16px;
    }
}

@media screen and (min-width: 1000px){
    .container{
        width: 90vw;
    }
    a.menu{
        display: none;
    }
    .menu_icon_box{
        display: none;
    }
    h1{
        letter-spacing: .1em;
    }
    h2{
        letter-spacing: .1em;
    }
/*----------------------------------header-------------------------------*/
    .mainnav{
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }
    .links{
        display: flex;
        flex:1;
        justify-content: flex-end;
        align-items: center;
        right: 0;
        background: none;
        text-decoration: none;
        transition: all 500ms;
        position: relative;
        height: 40px;
        padding: 0;
        margin: 10px 0 0 0;
        gap: 5px;
    }
    .links li{
        transition: all 500ms;
    }
    .links li a{
        border: none;
        text-decoration: none;
    }
    .links li a:hover{
        text-decoration: none;
        border: none;
    }
    .links li:last-child{
        width: 50px;
        border: none;
    }
    .links li:last-child:hover{
        border: none;
    }
    .menuitem{
        border-radius: 5px;
        margin: 15px 0;
        color: var(--primary-font);
        background: none;
        padding: 10px;
    }
    .actief{
        color: white;
        background: var(--primary-shade-opac);
        cursor: default;
    }
    .mandje{
        display: block;
        background: none;
        color: white;
    }
    .mandje:hover{
        color: white;
        cursor: pointer;
    }
    
/*----------------------------------sections-------------------------------*/

    .section-assortiment, .section-catering, .section-catalogus, .section-ijstaart, .section-verhuur, .section-contact{
        max-width: 1100px;
        margin: 50px auto 50px;
    }
    .div-catalogus{
        grid-template: repeat(4, 400px) / 1fr 1fr 1fr 1fr;
        grid-gap: 40px;
    }
    .section-catalogus form p{
        justify-content: center;
        width: 70%;
    }
    .section-ijstaart h3, .section-verhuur h3, .section-contact h3{
        margin-left: 80px;
    }
    .section-ijstaart p, .section-verhuur p{
        color: white;
        background: none;
        margin: 10px 10px 10px 40%;
    }
    .section-ijstaart button, .section-verhuur button, .section-catering button{
        margin: 20px auto;
    }
    .section-catering p{
        background: none;
        max-width: 900px;
    }
    .contactdiv {
        align-self:flex-end;
        justify-self: flex-end;
        flex: 1;
        min-width: 600px;
    }
    .section-contact form button{
        min-width: 200px;
        max-width: 300px;
    }
    #first-img-ass{
        display: block;
    }
    #second-img-ass{
        display: block;
    }
    #third-img-ass{
        display: block;
    }
    #fourth-img-ass{
        display: block;
    }
    #fifth-img-ass{
        display: none;
    }
    
/*----------------------------------footer-------------------------------*/
    footer{
        flex-direction: row;    
    }
    #footerright{
        width: 30%;
    }
    form.formNB{
        text-align: right;
        width: 30%;
    }
    footer img{
        width: 30%;
    }
    #adres{
        width: 30%;
    }
}