 /* header { 
    background-color: rgb(103, 204, 130);
    height: 100px;
    color: white;
    font-size: 1.4rem;
    font-weight:900;
    font-style: normal;
     display: flex; } */
     

main{ 
    padding: 1rem;
}

body{background-color: rgb(237, 226, 216);}

body.homepage {
    background-image: url(../img/home-img.jpg);
    background-size: 200%;
    background-position: 50% 20%;
}

body.cuisine main img {
    height: 4rem;
    width: auto;
    height: 10rem;
    display: block;
    margin: 1rem auto;
}

body.homepage main img {
    border: 1px solid white;
}

body.contact main h1 {
    margin-bottom: 1rem 
}
li a svg {
    width: auto;
    height: 1rem;
    margin-right: 0.3rem;
    }
   

.icon {
   height: 50px;
   width: 50px;
   margin: 0;
   padding: 0;
   position: absolute;
   top: 1px;
}
.icon svg {
    display: block;
    width: 100%;
    height: auto;
}

 header div div {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    position: relative;
    top: 5px;
    }
    header > div {
    font-size: 1.3rem;
    position: relative;
    left: -0.8rem;
    } 
    #logo {
    height: 4rem;
    width: auto;
    margin-top: 0.5rem;
    left: -0.2rem;
}

h1 { font-weight: 600;
    font-style: normal;
    font-size: 1.8em; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 0.9rem;
   }
h2 { font-size: 1.7818em;
margin-top: 2rem;
margin-bottom: 0.5rem;
font-weight: 400;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; }
h3 { font-size: 1.5874em; }
h4 { font-size: 1.4142em; }
h5 { font-size: 1.2599em; }
h6 { font-size: 1.1225em; }
p { font-size: 1em; font-weight: normal; margin: 1rem 0 0.5rem 0.6rem;  
     line-height: 1.2rem;}
small { font-size: .8909em; }

p + img {
    margin: 0.9rem 0 0 0;
}

/* header + h1 { 
    margin: 9rem 0 0 0;
}*/
    
form {
    border: 1px solid transparent;
    padding: 1rem;
    font-size: 0.9rem;
}   

fieldset{
    border: 1px solid #444;
    margin: 0 0.5rem 2rem 0.5rem;
    padding:1rem;
} 

label,input{
display: block; 
width: 100%;
}

input[type="text"],
input[type="tel"] {
    margin: 0.125rem 0 1.2rem 0;
}

textarea {
    width: 100%;
    margin:0.125rem 0 1rem 0;
    font-size: 0.8rem;
}

.align-right {
    display: flex;
    justify-content: end;
}

input[type="submit"]{
    margin: 0 0.55rem;
    background-color: rgb(114, 203, 114);
}

input[type="reset"]{
 background-color: rgb(224, 92, 92);
}

.button{
    width: 5rem;
    color: white;
    border-radius: 0.5rem;
}

.button:hover {
    filter:opacity(0.5);
    
}

footer{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.7rem;
    background-color: rgb(237, 180, 106);
    padding: 19px;
    height: 9.7rem;
    color: white;
    display: flex;
    font-style: normal;
    flex-direction: column;
    justify-content: center;
    line-height: 20px;
}
footer p {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;

}

/* Main menu loveHa rule */


a:link svg {
    fill: rgb(107, 107, 240);
}

a:visited svg {fill: rgb(57, 56, 56);}


#menu a:link {
    color: rgb(107, 107, 240); 
    /* change to suit your design */

    text-decoration: none;  
    /* remove default underline */
}

#menu a:visited {
    color: gray;
     
     /* less vivid color, must look "less interesting" than the a:link color 
        basically, this style must suggest "been there, seen that" */
}

#menu a:hover {
    text-decoration: underline; 
    /* add underline on hover to show it is a link */
}

#menu a:active {
    color: magenta; }
    /* only shows when clicking the mouse */

/* main content LoveHa */
    main a:link {
        color: rgb(107, 107, 240);
        text-decoration: none;
    }

    main a:visited {
        color: gray;
    }

    main a:hover {
        text-decoration: underline;
    }

    main a:active {
        color: magenta;
    }

/* Footer menu LoveHa */

    footer a:link {
        color:rgb(107, 107, 240);
        text-decoration: none;
    }

    footer a:visited {
        color: gray;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer a:active {
        color: magenta;
    }

/* hambur menu */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'open sans', sans-serif;
}
header{
    /* position: fixed; */
    z-index: 1; 
    background-color: rgb(237, 180, 106);
    color: white;
    top: 0;
    height: 70px;
    width: 100%;
    display: flex;justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    
}
header h1{
    text-transform: uppercase;
    font-size: 1.4rem;
}
.menu{
    display: flex;
}
#menuCheck{
    width: 0;
    height: 0;
}
.menu-list{
    list-style: none;
    display: flex;
}
.menu-list li{
    display: inline-block;
    margin-right: 32px;
    cursor: pointer;
    transition: color 0.3s;
}
.menu-list li:hover{
color: #fff; }

#menu a {
   display: flex;
   flex-wrap: nowrap;
   flex-direction: row;
   align-content: stretch;
   justify-content: flex-start;
   align-items: center;
}


@media (max-width: 480px) {
    header{
        background-color: transparent;
        color: #20252b;
        padding-right: 16px;
    }
    header::before{
        content: "";
        position: fixed;
        top: -100px;
        right: -100px;
        width: 200px;
        height: 200px;
        background-color: rgb(237, 180, 106);
        border-radius: 50%;
    }
    #menuCheck,
    .menu-icon{
        display: block;
    }
    .menu-icon{
        color: #fff;
        position: relative;
        z-index: 2;

    }   
    .menu-list{
        position: fixed;
        background-color: rgb(237, 180, 106);
        color: #fff;

        top: -100px;
        left: 100%;
        width: 150vh;
        height: 150vh;
        border-radius: 50%;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: top 0.4s, left 0.4s, transform 0.4s;
    }
    #menuCheck:checked~ .menu-list{
        top: 36%;
        left: 54%;
        transform: translate(-50%, -50%);
    }
    .menu-list li{
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: 600;
        font-style: normal;
        text-transform: uppercase;
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
        transition: opacity 1s;
    }
    
    #menuCheck:checked~ .menu-list li{
        opacity: 1;
    }
    .menu-icon{
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 60px;
        font-size: 1.4rem;
        cursor: pointer;
        display: flex;justify-content: center;
        align-items: center;
    }
    #menuCheck:checked~.menu-icon{
        border: 2px solid #fff;
    }
    label .fa-bars,
    #menuCheck:checked~label .fa-times{
        display: block;
        position: fixed;
    }
    label .fa-times,
    #menuCheck:checked~label .fa-bars{
        display: none;
    }

     }


   
