@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Quicksand", sans-serif;
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.container{
   max-width: 1100px;
   margin: auto;
}

/* Utility classes */
.primary-text{
    color: #E4B95B;
}
.button{
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
}
.button-primary{
    color: white;
    border: 1px solid white;
}
.button-secondry{
    color: #f4f4f4;
    background: #383848;
    margin-top: 2rem;
}
.button-primary:hover,
.button-secondry:hover{
    background-color: #E4B95B;
}


/*Header Start*/
header{
    height: 100vh;
    background:url('./images/home_bg.jpeg') center center/cover no-repeat;
    position: relative;
}
#navigatin{
    display: flex;
    justify-content: space-between;
    background-color: red;
    align-items: center;
}
#navigatin img{
    width: 80px;
    margin-left: 100px;
}
#navigatin ul{
    display: flex;
    margin-right: 100px;
}
#navigatin ul li a{
    padding: 15px 20px;
    color: white;
    font-weight: 600;
}
#navigatin ul li a:hover{
    border-bottom: 2px solid #E4B95B;
}
header .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 75%;
}
header .content h1{
    font-size: 40px;
    color: white;
}
header .content p{
    margin: 20px 0;
    color: white;
}
header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:rgb(0,0,0,0.6)
}
header *{
    z-index: 10;
}
/* Header End */
/* About Start */
#about{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}
#about .title,
#offers .title,
#menu .title {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

#about h2,
#offers h2,
#menu h2,
#gallery h2{
    font-size: 40px;
    margin-bottom: 20px;
}
#about h2,
#menu h2{
    color: #383848;
}
#about .title p,
#menu .title p{
    font-size: 14px;
    color: #9A9A9A;
    font-weight: 600;
}
#about .about-content{
    display: flex;
    justify-content: space-between;
}

#about .about-content img{
    width: 450px;
}

#about .about-content p{
    color: #9a9a9a;
    margin-right: 7rem;
    font-weight: 500;
    line-height: 1.6;
}
/* About End */
/* Offers Start */
#offers{
    height: 80vh;
    display: flex;
    justify-content: center;
    background: url("./images/offer-background.jpg") center center/cover fixed;
}
#offers h2{
    color: #E4B95B;
}
#offers .title p{
    color: #f4f4f4;
    font-weight: 500;
}
#offers .offers-items{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f4f4f4;
}
#offers .offers-items img{
    width: 200px;
}
#offers .offers-items h3{
    font-size: 25px;
    margin: 15px 0;
}
#offers .offers-items p{
    font-size: 14px;
    padding: 0 20px;
    font-weight: 300;
    margin-bottom: 15px;
}
#offers .offers-items span{
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
}
/*Offers End*/
/*Menu Star*/
#menu{
    background: #f4f4f4;
    padding: 5rem 0;
}

#menu .menu-items{
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu .menu-items .menu-item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px ;
}
#menu .menu-items .menu-item img{
    width: 80px;
    border-radius: 50%;
    margin-right: 20px;
}
#menu .menu-items .menu-item h3{
    color: #383848;
    border-bottom: 2px dashed #c2bdbd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position:relative;
}
#menu .menu-items .menu-item span{
    position: absolute;
    top:0;
    right:0;
}
#menu .button{
    display: block;
    margin: 20px auto 0;
    background-color: #E4B95B;
    color: #f4f4f4;
    cursor: pointer;
}
#menu .button:hover{
    background-color: #383848;
}
/* Menu End */
/* Daytime Start */
#daytime{
    background: url('./images/daytime_bg.jpeg') center center/cover fixed no-repeat;
    color: #f4f4f4;
    text-align: center;
}

#daytime .daytime-itemes {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height:40vh 
}

#daytime .daytime-itemes h3{
    font-size:32px ;
    margin:20px 0 10px;
}
#daytime .daytime-item p{
    font-weight: 500;
}
/* Daytime End */
/* Gallery Start */
#gallery{
    background: url('./images/offer-background.jpg') center center/cover no-repeat;
    padding: 8rem 0 6rem;
}
#gallery h2{
    color:#f4f4f4 ;
    text-align: center;
}
#gallery .gallery-images{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}
#gallery .gallery-images img{
    width: 280px;
    height: 200px;
    border-radius: 15px;
    margin: 20px;
    opacity: 0.8;
}
#gallery .gallery-images img:hover{
    opacity: 1;
}
/* Gallery End */

/* Contact Start */
#contact {
    padding: 5rem 0;
    background: #f4f4f4;
}

#contact .container{
    max-width: 900px;
}

#contact .contact-content{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
}

#contact .contact-content .contact-info{
    width: 50%;
}

#contact .contact-content .contact-info div{
    margin: 30px 0;
    line-height: 1.7;
}
#contact .contact-content .contact-info h3{
    font-size: 28px;
    color: #383848;
    margin-bottom: 10px;
}
#contact .contact-content .contact-info p{
    color: #9A9A9A;
}
#contact .contact-content .contact-info i{
    color: #E4B95B;
    margin-right: 5px;
}
#contact .contact-content .contact-info a i{
    color: #f4f4f4;
    background-color: #383848;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
}
#contact .contact-content .contact-info a i:hover{
    background: #E4B95B;
    color: #383848;
}
form{
    width: 50%;
}
form input,
textarea {
    display: block;
    width: 100%;
    padding: 20px 15px;
    margin: 20px 0;
    border: none;
    background-color: #e3e2dd;

}

#contact button{
    background-color: #E4B95B;
    color:#f4f4f4;
    cursor: pointer;
}

#contact button:hover{
    background-color:#383848;
    
}
/* Contact End */

/* Footer Start */
#footer{
    background: #383848;
    color: #f4f4f4;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

#footer a{
    color: #f4f4f4;
}
/* Footer End */


