
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: #F2A908;
}
.btn{
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
}
  .btn-primary{
    color: #fff;
    border: 1px solid #fff;
  }
  .btn-primary:hover, .btn-secondary:hover{
    background: #F2A908;
  }
  .btn-secondary{
    color: #fff;
    background: #4a2b1c;
    margin-top: 2rem;

  }
/* header start*/
header{
    height: 100vh;
    background: url('./img/home_bg.jpeg') center center/cover no-repeat;
    position: relative;
}

#navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;  
}
#navbar img{
width: 150px;
margin-left: 100px;
}
#navbar ul{
display: flex;
margin-right: 100px; 
}
#navbar ul li a{
padding: 15px  20px;
color: #fff;
font-weight: 600;
}
#navbar ul li a:hover{
    border-bottom: 2px solid;
 }
 header .content{
    display: flex;
    flex-direction: column;
    align-items: center;
   justify-content: center;
   height: 75%;
 }
 header .content h1{
    font-size: 40px; 
    color: #fff; 
 }
 header .content p{
    margin: 40px 0 40px;
    color: #fff;
 }
 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: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}
#about .title, 
#offers .title,
#menu .title{
    text-align: center;
    margin-bottom: 4rem;

}
#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: 400px;
    margin-bottom: 200px;
}
#about .about-content p{
    color: #9a9a9a;
    margin-right: 7rem;
    font-weight: 500;
    line-height: 1.6;
}
/* about end*/

/* offers start*/
#offers{
    height: 100vh;
    display: flex;
    justify-content: center;
    background: url('./img/offer-background.jpg') center center/cover fixed;
}
#offers h2{
    color:#F2A908 ;
}
#offers p{
    color:#fff ;
    font-weight:500;
}
#offers .offers-items{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:#F2A908 ;
}
#offers .offers-items img{
    width: 200px;
}
#offers .offers-items h3{
    font-size: 25px;
    margin: 15px 0;
}
#offers .offers-items p{
    font-size: 15px;
    padding: 0 20px;
     font-weight: 300;
     margin-bottom: 15px;
}
#offers .offers-items span{
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}
/* offers end*/

/* menu Start  */

#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: 1px dashed #c2bdbd;
 padding-bottom: 10px;
 margin-bottom: 10px;
 position: relative;
}
#menu .menu-items .menu-item span{
    position: absolute;
    top: 0;
    right: 0;
}
#menu .btn{
    display: block;
    margin:20px auto 0;
    background: #383848;
    color: #fff;
    cursor: pointer;
}
#menu .btn:hover{
    background:#F2A908 ;
}
/* menu end  */


/* daytime start*/
#daytime{
    background: url("./img/daytime_bg.jpeg") center center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
}
#daytime .daytime-items{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40vh;

}
#daytime .daytime-items h3{
    font-size: 32px;
    margin: 20px 0 10px;
}
#daytime .daytime-items p{
    font-weight: 500;
}
/*daytime end*/

/* gallery start*/
#gallery{
    background: url(./img/offer-background.jpg) center center/cover no-repeat;
    padding: 8rem 0 6rem;
}
#gallery h2{
color: #fff;
text-align: center;
}
#gallery .img-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
} 
#gallery .img-gallery img{
 width: 280px;
 height: 200px;
 border-radius: 15px;
 margin: 20px;
 opacity: 0.8;
}

#gallery .img-gallery 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: #F2A908;
    margin-right: 5px;
}
#contact .contact-content .contact-info a i {
    color: #fff;
    background-color: #383848;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;
    height: 50px;
}
#contact .contact-content .contact-info a i:hover {
background: #F2A908;
color:#383848 ;
}
form{
width: 50%;
}
form input, 
textarea{
    display: block;
    width: 100%;
    padding: 20px 15px;
    margin: 20px 0;
    border: none;
    background-color: #e3e2dd;
}
#contact .btn{
    background: #F2A908;
    color: #fff;
    cursor: pointer;
}
#contact .btn:hover{
    background-color: #383848;
}
/* contact End*/

/*footer start*/
#footer{
    background: #383848;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}
/*footer End*/

/* responsiveness */
/* Medium Screen + Tablet*/

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

  .container {
    max-width: 90%;
  }

  /* Header */
  header {
    height: auto;
    padding: 4rem 0;
  }
  #navbar {
    flex-direction: column;
    align-items: center;
  }
  #navbar img {
    margin: 20px 0;
    width: 130px;
  }
  #navbar ul {
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  #navbar ul li a {
    padding: 10px 15px;
    font-size: 16px;
  }
  header .content h1 {
    font-size: 36px;
    text-align: center;
  }
  header .content p {
    font-size: 16px;
    text-align: center;
  }

  /* About */
  #about {
    height: auto;
    padding: 4rem 0;
  }
  #about .about-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  #about .about-content img {
    width: 80%;
    margin: 2rem 0;
  }
  #about .about-content p {
    margin: 0;
    max-width: 80%;
  }

  /* Offers */
  #offers {
    height: auto;
    padding: 4rem 0;
  }
  #offers .offers-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  #offers .offers-items img {
    width: 180px;
  }

  /* Menu */
  #menu .menu-items {
    flex-direction: column;
    align-items: center;
  }
  #menu .menu-item {
    flex-direction: column;
    text-align: center;
    margin: 20px 0;
  }
  #menu .menu-item img {
    margin-bottom: 15px;
  }

  /* Daytime */
  #daytime .daytime-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  /* Gallery */
  #gallery .img-gallery {
    flex-wrap: wrap;
    justify-content: center;
  }
  #gallery .img-gallery img {
    width: 45%;
    height: auto;
  }

  /* Contact */
  #contact .contact-content {
    flex-direction: column;
    align-items: center;
  }
  #contact .contact-info,
  #contact form {
    width: 100%;
  }

  /* Footer */
  #footer {
    font-size: 14px;
  }
}

/* Mobile Devices*/
@media (max-width: 600px) {

  /*  navbar  */
  #navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  #navbar img {
    margin: 0 0 10px 0;
    width: 120px;
  }

  #navbar ul {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 8px;
  }

  #navbar ul li a {
    padding: 8px 0;
    font-size: 15px;
    display: block;
  }

  /* header */
  header {
    height: auto;
    padding: 4rem 1rem 3rem;
    text-align: center;
  }

  header .content h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  header .content p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 90%;
    margin: 1rem auto;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* about */
  #about {
    height: auto;
    padding: 3rem 1rem;
  }

  #about .about-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  #about .about-content p {
    margin: 0;
    max-width: 90%;
    font-size: 14px;
    line-height: 1.5;
  }

  #about .about-content a {
    margin: 1.5rem 0 2rem;
  }

  #about .about-content img {
    width: 220px;
    max-width: 80%;
    margin: 0 auto;
  }

  /*  offers */
  #offers {
    height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  #offers .offers-items {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  #offers .offers-items > div {
    max-width: 320px;
  }

  #offers .offers-items img {
    width: 160px;
  }

  #offers .offers-items h3 {
    font-size: 18px;
    margin-top: 1rem;
  }

  #offers .offers-items p {
    font-size: 14px;
    line-height: 1.4;
  }

  /*menu*/
  #menu .menu-items {
    flex-direction: column;
    align-items: center;
  }

  #menu .menu-items-left,
  #menu .menu-items-right {
    width: 100%;
  }

  #menu .menu-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 330px;
    margin: 1.5rem auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid #c2bdbd;
  }

  #menu .menu-item img {
    width: 70px;
    height: 70px;
    margin: 0 0 10px 0;
    border-radius: 50%;
  }

  #menu .menu-item h3 {
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: none; 
    color: #383848;
  }

  #menu .menu-item h3 span {
    display: block;
    color: #F2A908;
    font-weight: 600;
    margin-top: 4px;
  }

  #menu .menu-item p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }

  #menu .btn {
    width: auto;
    margin-top: 2rem;
    font-size: 14px;
    padding: 12px 18px;
  }

  /*  daytime */
  #daytime .daytime-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 2rem 0;
    gap: 2rem;
  }

  #daytime .daytime-items .day-item img {
    max-width: 60px;
  }

  #daytime .daytime-items h3 {
    font-size: 20px;
    margin: 0.5rem 0 0.25rem;
  }

  #daytime .daytime-items p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
  }

  /*  gallery */
  #gallery {
    padding: 3rem 1rem;
  }

  #gallery h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  #gallery .img-gallery {
    flex-direction: column;
    align-items: center;
  }

  #gallery .img-gallery img {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 10px 0;
  }

  /*  contact */
  #contact {
    padding: 3rem 1rem;
  }

  #contact .contact-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #contact .contact-info,
  #contact form {
    width: 100%;
    max-width: 340px;
  }

  #contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }

  #contact .contact-info p {
    font-size: 14px;
    line-height: 1.5;
  }

  #contact .contact-info a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 10px;
  }

  form input,
  form textarea {
    font-size: 14px;
    padding: 14px 12px;
    margin: 10px 0;
  }

  #contact .btn {
    font-size: 14px;
    padding: 10px 14px;
    margin-top: 10px;
  }

  /*  FOOTER  */
  #footer {
    font-size: 12px;
    padding: 12px 0;
    text-align: center;
  }
}

