@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

.html {
  font-size: 62.5%;
}

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

/* ///////////..utility classes../////////// */

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
}

.join{
  padding-top: 40px;
  align-items: center;
  align-self: center;
  align-content: center;
  margin-left: auto;
  padding-left: auto;


  /* 
  color: #000;
  background: #000;
  height: 200px;
  width: 200px; */
}

.btnn {
  /* display: inline-block; */
  padding: 1.5em 5.5em;
  text-decoration: none;
  border-radius: 200px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: large;
  position: absolute;
  /* top: 80%;
  left: 50%; */
  transform: translate(-50%, -50%);
}

.btn {
  /* display: inline-block; */
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  position: relative;
  color: #fff;
  background: #f8aa03;
}


.btn-primary:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

/* ............/navbar/............ *

/* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  height: 60px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.menu-items a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

.logo img {
  width: 10%;
  height: 10%;
}

/* ............//// Showcase styling ////......... */

.showcase-container {
  position: relative;
  top: 70px;
  padding-left: 50px;
  text-align: center;
  color: white;
  width: 100%;
}

.showcase-container img {
  width: 80%;
}

.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
 * Social Buttons for Footer 
 */

.adminActions {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 900;
}

.adminButton {
  height: 60px;
  width: 60px;
  background-color: rgba(67, 83, 143, 0.8);
  border-radius: 50%;
  display: block;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.adminButton i {
  font-size: 22px;
}

.adminButtons {
  position: absolute;
  width: 100%;
  bottom: 120%;
  text-align: center;
  font-size: 16px;
}

.adminButtons a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  margin: 10px auto 0;
  line-height: 1.15;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  position: relative;
  box-shadow: 0 0 5px 1px rgba(51, 51, 51, 0.3);
}

.adminButtons a:hover {
  transform: scale(1.05);
}

/*
.adminButtons a:nth-child(6) {
  background: -webkit-linear-gradient(top, #3a5795 0%, #2b4886 100%);
  background: -moz-linear-gradient(top, #3a5795 0%, #2b4886 100%);
  background: -o-linear-gradient(top, #3a5795 0%, #2b4886 100%);
  background: -ms-linear-gradient(top, #3a5795 0%, #2b4886 100%);
  transition: opacity .2s ease-in-out .3s, transform .15s ease-in-out;
}*/

.adminButtons a:nth-child(1) {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  transition: opacity 0.2s ease-in-out 0.25s, transform 0.15s ease-in-out;
}

.adminButtons a:nth-child(2) {
  background-color: #0077b5;
  transition: opacity 0.2s ease-in-out 0.2s, transform 0.15s ease-in-out;
}

.adminButtons a:nth-child(3) {
  background-color: red;
  transition: opacity 0.2s ease-in-out 0.15s, transform 0.15s ease-in-out;
}

.adminActions a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.adminToggle {
  -webkit-appearance: none;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  z-index: 2;
  transition: box-shadow 0.2s ease-in-out;
  box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

.adminToggle:hover {
  box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
}

.adminToggle:checked~.adminButtons a {
  opacity: 1;
  visibility: visible;
}

/* ......//about us//...... */

#about {
  padding: 50px 0;
  background: #f5f5f7;
  position: relative;
  top: 70px;
  height: 600px;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#about h2 {
  font-size: 2.3rem;
}

#about p {
  font-size: 1.2rem;
  color: #555;
}

#about .small {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.about-img {
  flex: 1 1 0;
  padding: 30px;

  animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
  0% {
    transform: translateX(150%);
  }

  100% {
    transform: translate(0);
  }
}

.about-text {
  flex: 1 1 400px;
  padding: 30px;
  margin: auto;
  transform: translate(-150%);
  animation: about-text-animation 1s ease-in-out forwards;
  text-align: justify;
}

@keyframes about-text-animation {
  100% {
    transform: translate(0);
  }
}

.about-img img {
  display: block;
  height: 400px;
  max-width: 120%;
  margin: auto;
  object-fit: cover;
  object-position: right;
}

/* ..........////Journey so far///........... */
.journey {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 400;
  color: #666;
  position: relative;
  top: 70px;
}

#food {
  padding: 5rem 0 10rem 0;
}

#food h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #555;
}

.food-container {
  display: flex;
  justify-content: space-between;
  height: 400px;
  position: relative;
  top: 100px;
}

.food-container img {
  display: block;
  width: 100%;
  margin: auto;
  max-height: 250px;
  object-fit: cover;
  object-position: center;
}

.img-container {
  margin: 0 1rem;
  position: relative;
  box-shadow: 20px 20px 20px 20px #888888;
  border: 2px solid #e9db8a;
}

.img-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  text-align: center;
  transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
  color: #fff;
  font-size: 2.2rem;
}

.img-content a {
  font-size: 1.2rem;
}

.img-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  opacity: 0;
  z-index: 1;

  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.img-container:hover .img-content {
  opacity: 1;
  top: 40%;
}

/* .........../teams/............ */

.food-menu-heading {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 400;
  color: #666;
  position: relative;
  top: 100px;
}

.food-menu-container {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px 30px 0px;
  position: relative;
  top: 100px;
}

.food-menu-container img {
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.food-menu-item {
  display: flex;
  flex: 1 1 600px;
  justify-content: space-evenly;
  margin-bottom: 3rem;
}

.food-description {
  margin: auto 1.5rem;
}

.font-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
}

.food-description p {
  font-size: 1.4rem;
  color: #555;
  font-weight: 500;
}

.food-description .food-price {
  color: #117964;
  font-weight: 700;
}

/* ........./ members /.......... */

#testimonials {
  padding: 5rem 0;
  background: rgba(243, 243, 243);
}

.testimonial-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
  color: #555;
  position: relative;
  top: 100px;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  padding: 1rem;
  position: relative;
  top: 120px;
}

.mycontainer {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  padding: 1rem;
  position: relative;
  top: 120px;
}

.testimonial-box .checked {
  color: #ff9529;
}

.testimonial-box .testimonial-text {
  margin: 1rem 0;
  color: #444;
}

.testimonial-box {
  text-align: center;
  padding: 1rem;
}

.customer-photo img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: auto;
}

.form-container {
  padding: 1rem;
  width: 50%;
  margin: auto;
}

.form-container input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  box-shadow: none;
  outline: none;
  margin-bottom: 1rem;
  color: #444;
  font-weight: 500;
}

.form-container textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  color: #444;
  outline: none;
  padding: 1rem 0;
  resize: none;
}

.form-container h2 {
  font-size: 2.7rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
  position: relative;
  top: 100px;
  text-align: center;
}

.form-container p {
  position: relative;
  top: 100px;
  text-align: center;
}

.form-container h1 {
  position: relative;
  top: 100px;
  text-align: center;
}

.form-container h3 {
  position: relative;
  top: 500px;
  text-align: center;
}

.form-container a {
  font-size: 1.3rem;
}

#footer h2 {
  text-align: center;
  font-size: 1.8rem;
  padding: 2.6rem;
  font-weight: 500;
  color: #fff;
  background: rgb(65, 65, 65);
}

html,
body {
  margin: 0;
  padding: 0;
}

.containers {
  padding: 4% 3%;
}

.social-media-bar {
  float: none;
}

.social-media-bar a {
  padding: 10px;
  color: #555;
  font-size: 20px;
}

.social-media-bar a:hover {
  color: #000;
}

.showcase-container {
  position: absolute;
  top: 600px;
  left: 25px;
  text-align: center;
  color: white;
  width: 1500px;
}

#btn1 {
  /* padding: 0.4rem; */
  font-size: 12px;
  /* margin: 0 0 0 0; */
  margin-left: 40%;
}

.Big img {
  height: 45%;
  width: 100%;
}

/* ......../ media query /.......... */

@media (max-width: 768px) {

  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: absolute;
    padding-top: 200px;
  }

  .navbar {
    max-width: 100vw !important;
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    max-width: 100%;
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 15px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #3c3939;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  
  .navbar .menu-items {
    padding-top: 100px;
    background: #e2dddd;
    color: rgb(255, 248, 248);  height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #f0ebeb;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2rem;
  }

  .navbar-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-35deg);
  }

  /* ......./ food /......... */

  .food-container {
    flex-direction: column;
    align-items: stretch;
  }

  .food-type:not(:last-child) {
    margin-bottom: 2rem;
  }

  .food-type {
    box-shadow: 5px 5px 10px 0 #aaa;
  }

  .img-container {
    margin: 0;
  }

  #btn1 {
    /* margin: auto; */
    margin-left: 45%;
    padding: auto;
    align-self: center;
  }

  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: absolute;
    top: 1000px;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    position: relative;
    top: 1px;
  }

}

@media (max-width: 800px) {
  html {
    font-size: 65%;
  }

  body {
    width: 100%;
  }

  .navbar {
    max-width: 100%;
  }

  .navbar .menu-items li {
    font-size: 1.6rem;
  }

  .showcase-container {
    left: 0;
  }

  .showcase-container img {
    left: 0;
    width: 100%;
    height: 70%;
  }

  .btnn {

    padding: 0.5em 1em;
    margin-top: 0.4em;
  }

  .about-img img {
    width: 110%;
    height: 110%;
    margin-top: -20px;
  }

  #about {
    height: 700px;
  }

  /* .journey {
    margin-top: 40px;
  } */

  #teams {
    margin-top: 460px;
  }

  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .food-menu-container img {
    margin-top: 200px;
    margin-left:60px;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    position: relative;
    top: 1px;
  }

  .contact-container {
    position: relative;
    top: 50px;
  }

  .logo {
    position: absolute;
    top: 6px;
    right: 15px;
    font-size: 3rem;
  }

  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
  }


  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: absolute;
    top: 1000px;
  }

  #btn {
    margin: auto;
    padding: auto;
    align-self: center;
  }

}

@media (min-width: 769px) and (max-width: 1200px) {
  #teams {
    margin-top: 660px;
  }

  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.7rem;
  }
  


  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: relative;
    top: 350px;
  }


  #btn {
    margin: auto;
    padding: auto;
    align-self: center;
    ;
  }

}


/* @media (orientation: landscape) and (max-height: 500px) {
  .showcase-area {
    height: 50vmax;
  }

  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: relative;
    top: 350px;
  }

  #btn{
  margin:auto;
  padding:auto;
  align-self:center;
  }

} */


@media (max-width: 870px) {
  .logo img {
    width: 15%;
    height: 10%;
  }

  .counter {
    margin: 20px;
    padding: 10px;
    height: 20px;
    width: 20px;
  }

  .food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
    position: relative;
    top: 350px;
  }

  #btn1 {
    /* margin: auto;
     */
     margin-left: 40%;
    padding: auto;
    align-self: center;
  }

}