/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Page Style */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
  }
a:hover {
    color: #FFDC7F;
    cursor: pointer;
}
a:active {
    color: #e65a5a;
  }
/* Header Style */

header {
    width: 100vw;
    height: 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: white; 
    border-bottom: 2px solid #37839e ; 
    
    font-family:"Mali", serif;
    color: #37839e;
    font-weight: 600;

    position: sticky;
    top: 0;

    z-index: 1;
}
header > article{
    display: flex;
    margin-left: 50px;
}
#logo {
    width:80px;
    height: 80px;
    background-image: url(../assets/images/Logo.svg);
    background-size: cover;
    margin: 0;
}
#tagline {
    height: 85px;
    flex-direction: column;
    justify-content: center;
   
    font-size: 28px;
    align-content: center;
    padding-left: 10px;
} 
nav {
    width: 50%;
}
nav > ul {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    font-size: 20px;
}
nav > ul > li > a{
    text-decoration: none;
    color: #37839e;
}

/* hero Style */

#hero{
    position: relative;
    width: 100vw;
    height: 90vh; 
    background: url('../assets/images/heroimage.jpg') center/cover no-repeat; 
    border-bottom: 2px solid #37839e ; 
    border-radius: 0;
}
#intro {
    position: absolute;
    top: 20%;
    right: 6vh;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    padding: 20px;
    
    text-align: right;
}
#intro h1, #intro p, #intro button {
    font-family: "Mali", serif;
    color: aliceblue;
    font-weight: 600;

    padding: 10px;
    margin: 10px 0;
}
#intro h1 {
    font-size: 4em;
}
#intro p {
    font-size: 2em;
}
#intro button {
    font-size: 2em;
    padding: 10px 20px;
    background-color: #0ea0dac7;
    border-radius: 10px;
    color: white;
    border: none;
    cursor: pointer;
    width: 400px;
}
#intro button:active {
    background-color: #FFDC7F; 
    color: black; 
}
/* Content Style */

.title{
    font-size: 30px;
    font-weight: 600;
    margin: 20px;
    padding: 10px;
    text-align: center;
    align-items: center;
}
.menu{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    font-family:"Mali", serif;
    color: #37839e;
    column-gap: 100px;
    row-gap: 50px;

}
.menu > article > h1{
    font-size: 1.8em;
    font-weight: 500;
    padding-top: 15px;
} 
.menu > article > p{
    font-size: 1.2em;
    font-weight: 500;
    padding-top: 15px;
}
.menu > article ,.dish{
    width: 400px;
    hyphens: none;
   
 }
.dish{
    height: 400px;
    border-radius: 20px;
}

/* images for the menu */

.image1 {
    background: url('../assets/images/1.jpg') center/cover no-repeat; 
}

.image2 {
    background: url('../assets/images/2.jpg') center/cover no-repeat; 

}

.image3 {
    background: url('../assets/images/3.jpg') center/cover no-repeat; 

}

.image4 {
    background: url('../assets/images/4.jpg') center/cover no-repeat; 

}

.image5 {
    background: url('../assets/images/5.jpg') center/cover no-repeat; 

}

.image6 {
    background: url('../assets/images/6.jpg') center/cover no-repeat; 

}

.image7 {
    background: url('../assets/images/7.jpg') center/cover no-repeat; 

}

.image8 {
    background: url('../assets/images/8.jpg') center/cover no-repeat; 

}

.image9 {
    background: url('../assets/images/9.jpg') center/cover no-repeat; 

}

.image10 {
    background: url('../assets/images/10.jpg') center/cover no-repeat; 

}
/* Style for the footer */

footer{
    width: 100vw;
    height: auto;
    background-color: #37839e;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-decoration: none;
    color: aliceblue;
    margin-top: 20px;
}
footer > section{
    display: flex;
    justify-content: space-evenly;
    align-content: flex-start;
    padding-top: 5px;
    font-size: 13px;
}
footer > section > article > h4 {
    font-weight: bold; 
    line-height: 2;
}
footer > section > article > p {
    line-height: 1.2;
}
footer > section > article > p > a{
    text-decoration: none;
    color: aliceblue;
}
footer > article{
    font-style: italic;
    text-align: center;
    line-height: 0.1;
    padding-bottom: 10px;
    font-size: 12px;
}

/* Scroller */
.scroller{
    position: sticky;
    font-size: 30px;
    font-weight: 600;
    margin-right: 30px;
    justify-content: right;
}
#Toheader
{ 
    align-items: end;
    background-color: #37839e;
    mask-image: url(../assets/images/Scroller.svg);
    mask-repeat: no-repeat;
    width: 50px;
    height: 50px;
    padding: 20;
}
#Toheader:hover {
    background-color: #FFDC7F;
}
#Toheader:active {
    background-color: #e65a5a;
}

/* Media Queries */
@media (max-width: 800px) 
{
    header {
        height: fit-content;
        justify-content: center;
        font-size: 16px;
        flex-direction: column;
        position: absolute;
    }
    header > article {
        flex-direction: column;
        align-items: center;
        justify-items: center;
        margin: 0;
    }
    #logo {
        width: 60px;
        height: 60px;
    }
    #tagline {
        padding-top: 15px;
        height: auto;
    }
    nav{
        width: 90%;
    }
    nav > ul {
        font-size: 16px;
        align-content: center;
        padding: 0;
        margin: 10px ;
        column-gap: 20px;
    }     

    #hero{
        position: relative;
        width: 100vw;
        height: 100vh; 
        background: url('../assets/images/heroimage.jpg') center/cover no-repeat; 
        border-bottom: 2px solid #37839e ; 
        border-radius: 0;
    }
    #intro 
    {
        position: absolute;
        top: 20%;
        right: 0;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
        padding: 20px;
        
        text-align: center;
    }
    footer > section{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        text-align: center;
        padding: 5px 15px;
        margin-bottom: 10px;
    }
    footer {
        height: auto;
    }
}

