@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.btn-primary {
  border: 1px solid #fff;
}

.btn-secondary,
.btn-third:hover {
  background: #16162b;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-third {
  background: #ff8826;
}

.primary-text {
  color: #ff8826;
}

/* Header Start */
header {
  height: 100vh;
  background: url("./img/contact.jpeg") center center/cover no-repeat;
  position: relative;
}
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  padding: 10px;
}
#navbar .fa-solid {
  display: block;
  font-size: 30px;
  margin: 10px;
  color: white;
  cursor: pointer;
  display: none;
}

#navbar img {
  width: 80px;
  margin-left: 100px;
  border-radius: 50%;
  margin: 10px;
}

nav ul {
  display: flex;
  margin-right: 100px;
}

nav ul li a {
  padding: 15px 20px;
  font-weight: 600;
}

nav ul li a:hover {
  border-bottom: 2px solid #ff8826;
}

header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 75%; /* Add exmple of greeen background */
}

header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0, 0.6);
}

header .content h1 {
  font-size: 40px;
  color: #fff;
}
header .content span {
  color: #ff8826;
}

header .content p {
  color: #fff;
  margin: 20px 0 40px;
}

header * {
  z-index: 10;
}

/* Header End */

/* About Start */
#about {
  height: auto;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

#about .title {
  text-align: left;
  margin-bottom: 4rem;
}
#offers .title,
#menu .title {
  text-align: center;
  margin-bottom: 4rem;
}

#about h2,
#offers h2,
#menu h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

#about .descreption {
  max-width: 60%;
}
#about h2 {
  color: #16162b;
}

#about .title {
  text-align: left;
}
#about .title p {
  font-weight: 600;
  font-size: 14px;
  color: #9a9a9a;
}

#about .about-content {
  display: flex;
  justify-content: center;
  height: 400px;
}

#about .about-content p {
  margin-right: 7rem;
  line-height: 1.6;
  color: #9a9a9a;
  font-weight: 500;
}

#about img {
  height: 100%;
}

#about .about-content a {
  margin-top: 2rem;
}
/* About End */
/* Gallery section start */
#gallery {
  background: #f4f4f4;
  padding: 4rem 3rem;
}
#gallery h2 {
  font-size: 40px;
  color: #16162b;
  text-align: center;
  margin-bottom: 30px;
}

#gallery .img-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#gallery .img-gallery img {
  margin: 20px;
  width: 280px;
  height: 200px;
  border-radius: 15px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.5;
}

#gallery .img-gallery img:hover {
  opacity: 1;
}
/* Gallery section end */
/* Menu Section Start */
#menu {
  background: #f4f4f4;
  padding: 5rem 0;
}

#menu .title h2,
#contact .title h2 {
  color: #16162b;
}
#menu .title p {
  color: #9a9a9a;
  font-weight: 500;
}
#menu .food {
  text-align: center;
}
#menu .food span {
  background-color: #16162b;
  color: #fff;
  font-size: 14px;
  padding: 10px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
}
#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-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#menu .menujs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#menu .menu-items .menu-item img,
#menu .menu-item img {
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
}

#menu .menu-items .menu-item h3,
#menu .menu-item h3 {
  color: #16162b;
  border-bottom: 1px dashed #c2bdbd;
  padding-bottom: 10px;
  position: relative;
  font-size: 15px;
}

#menu .menu-items .menu-item span,
#menu .menu-item span {
  position: absolute;
  right: 0px;
  top: 0;
}

#menu .menu-items .menu-item p,
#menu .menu-item p {
  margin-top: 10px;
  font-size: 12px;
}

#menu .btn {
  display: block;
  margin: auto;
  border: none;
  margin-top: 30px;
}

/* Menu Section End */
/* Daytime section Start */
#daytime {
  background: #e3e2dd;
  color: #16162b;
  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 section End */
/* Contact Section start */
#contact {
  background: #f4f4f4;
  padding: 5rem 0;
}

#contact .container {
  max-width: 900px;
}
#contact .title h2 {
  color: #16162b;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

#contact .contact-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#contact .contact-content form {
  width: 60vw;
}
#contact .contact-info {
  width: 50%;
}
#contact .contact-info iframe {
  width: 90%;
  height: 380px;
  margin: 30px 0;
  line-height: 1.7;
}

#contact .contact-info h3 {
  font-size: 28px;
  color: #16162b;
  margin-bottom: 10px;
}

#contact .contact-info p {
  color: #9a9a9a;
}

#contact .contact-info p i {
  color: #ff8826;
  margin-right: 5px;
}

#contact .contact-info a i {
  color: #fff;
  background: #16162b;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
}

#contact .contact-info a i:hover {
  background-color: #ff8826;
  color: #16162b;
}

form {
  width: 50%;
  text-align: center;
  margin: 0 15px;
}

form input,
textarea {
  display: block;
  width: 100%;
  padding: 20px 15px;
  margin: 20px 0;
  border: none;
  background-color: #e3e2dd;
}

form input:focus,
textarea:focus {
  outline: none;
}

form button {
  color: #fff;
}

/* Contact Section End */
/* foote start */
footer {
  background-color: #16162b;
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
}
footer .about_info h1 {
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}
footer .about_info p {
  color: white;
  margin: 3px 0;
}
footer .about_info h3 {
  color: white;
  font-weight: bold;
  margin-top: 10px;
}
footer .quick_links h1 {
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}
footer .quick_links ul li {
  margin: 5px 0;
}
Footer .quick_links ul li a {
  transition: 1s;
}
footer .quick_links ul li a:hover {
  border-bottom: 1px solid white;
}
footer .follow {
  display: flex;
  flex-direction: column;
}
footer .follow h3 {
  color: white;
  margin: 10px 0;
  font-size: 22px;
  font-weight: bolder;
}
footer .follow i {
  font-size: 20px;
  margin: 5px 5px;
  transition: 1s;
}
footer .follow i:hover {
  transform: rotate(180deg);
}
footer .follow h5 {
  display: inline;
}
/* Responsiveness */
/* Medium Screen + Tablet */
@media (max-width: 1000px) {
  #navbar img {
    margin-left: 20px;
  }

  nav ul {
    margin-right: 20px;
  }

  nav ul li a {
    padding: 10px;
  }

  header .content h1 {
    font-size: 28px;
  }

  #about {
    height: 80vh;
  }

  #about .about-content p {
    margin-right: 2rem;
  }

  #about img {
    width: 250px;
  }

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

  #offers .offers-items h3 {
    font-size: 18px;
  }

  #menu .menu-items {
    display: block;
  }
  #menu .menujs {
    display: flex;
    flex-direction: column;
  }
  #contact .container {
    max-width: 80vw;
  }
  #contact .contact-info {
    width: 40vw;
  }
  #contact .contact-info iframe {
    width: 100%;
  }
  form {
    width: 100%;
  }

  /* Mobile Devices */
  @media (max-width: 600px) {
    #navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-link {
      width: 200px;
      height: 400px;
      display: block;
      position: fixed;
      background: #ff8826;
      top: 0;
      right: -600px;
      z-index: 100;
      width: 100%;
      height: 100vh;
      text-align: left;
      transition: 1s;
      opacity: 1;
      border-bottom-left-radius: 10px;
    }
    .nav-link ul {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .nav-link ul li {
      display: block;
      text-align: center;
      background-color: #ffab66;
      margin: 10px 0;
      padding: 5px 5px;
      border-radius: 10px;
      width: 100%;
      transition: 1s;
    }
    .nav-link ul li a:hover {
      color: #ff8826;
    }
    #navbar .fa-solid {
      display: block;
      font-size: 30px;
      margin: 10px;
      color: white;
      cursor: pointer;
    }
    .fa-bars {
      position: relative;
      bottom: 20px;
      left: 5px;
    }
    i.fa-solid.fa-bars {
      position: relative;
      bottom: 10px;
    }
    #navbar img {
      margin-bottom: 20px;
    }

    header .content h1 {
      font-size: 18px;
    }

    header .content p {
      font-size: 14px;
    }
    #navbar img {
      width: 70px;
    }
    #about .descreption {
      max-width: 100%;
    }
    #about .about-content {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 80vw;
    }

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

    #about img {
      display: none;
    }

    #offers {
      height: auto;
      padding: 30px 10px;
    }

    #offers .offers-items {
      flex-direction: column;
    }

    #menu .menu-items .menu-item {
      margin: 20px 10px;
    }

    #daytime .daytime-items {
      display: block;
      height: auto;
      padding: 30px 0;
    }

    #daytime .daytime-items .daytime-item {
      margin-top: 20px;
    }
    #contact .container {
      max-width: 80vw;
    }
    #contact .contact-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    #contact .contact-info {
      width: 80vw;
    }
    #contact .contact-info iframe {
      text-align: center;
      width: 100%;
    }
    #contact .contact-content form {
      width: 80vw;
    }
    footer {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    footer .about_info {
      width: 70%;
    }
    footer .follow {
      width: 70%;
    }
    footer .quick_links {
      width: 70%;
    }
  }
}
