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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --main-color: #fac031;
  --paragraph-color: rgb(119, 119, 119);
  --main-transition: 0.3s;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* start special components */
.special-head span {
  color: var(--main-color);
  font-family: "Macondo", cursive;
  font-style: italic;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 2px;
}

/* end special components */

.container {
  padding: 0 15px;
  margin: 0 auto;
}

/* small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* start header */

header .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #fff;
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  min-height: 50px;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  header .container {
    justify-content: space-between;
  }
}

header .logo img {
  height: 40px;
}

header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .nav .toggle-menu {
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  header .nav .toggle-menu {
    display: none;
  }
}

header ul {
  display: flex;
}

@media (max-width: 767px) {
  header ul {
    display: none;
  }

  header .nav .toggle-menu:hover + ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    padding: 5px;
  }
}

header ul li a {
  color: #000;
  transition: var(--main-transition);
  display: block;
  position: relative;
  padding: 20px;
}

@media (max-width: 767px) {
  header .nav ul li a {
    color: #fff;
    font-size: 14px;
    padding: 5px;
  }
}

header ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  transition: var(--main-transition);
}

header ul li a:hover {
  color: #fac031;
}

header ul li a:hover::before {
  width: 100%;
}

header .icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

header .icons i {
  transition: var(--main-transition);
  cursor: pointer;
}

header .icons i:hover {
  color: var(--main-color);
}

@media (max-width: 767px) {
  header .icons {
    display: none;
  }
}

/* start home */
.home {
  position: relative;
}

@media (max-width: 767px) {
  .home {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.home .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100vh;
}

@media (max-width: 767px) {
  .home .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.home .info {
  max-width: 500px;
}

.home .info h2 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 30px;
}

.home .info p {
  color: var(--paragraph-color);
  font-size: 12px;
  line-height: 2;
}

.home .image img {
  width: 500px;
}

@media (max-width: 767px) {
  .home .image img {
    width: 100%;
  }
}

.home button.order-now {
  background: var(--main-color);
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  transition: var(--main-transition);
  cursor: pointer;
}

.home button.arrow {
  position: absolute;
  bottom: 0px;
}

@media (max-width: 767px) {
  .home button.order-now {
    bottom: -60px;
  }
}

.home button.arrow:hover i {
  animation: arrow-right linear 0.4s infinite;
}

/* about */
.about {
  margin-top: 50px;

  position: relative;
}

.about .content {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 767px) {
  .about .content {
    flex-direction: column;
    text-align: center;
  }
}

.about .image {
  flex-basis: 50%;
}

.about .image img {
  width: 500px;
}

@media (max-width: 767px) {
  .about .image img {
    width: 100%;
  }
}

.about .info {
  flex-basis: 50%;
}

.about .info h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.about .info h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.about .info p {
  color: var(--paragraph-color);
  font-size: 12px;
  padding: 5px;
  line-height: 2;
}

.about button.order-now {
  background: var(--main-color);
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  transition: var(--main-transition);
  cursor: pointer;
}

.about button.back-change {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .about button.back-change {
    bottom: -70px;
  }
}

.about button.back-change:hover {
  background-color: #000000;
}

/* start menu */
.menu {
  margin-top: 100px;
}

.menu h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.menu .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu .box {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  position: relative;
}

.menu .box img {
  max-width: 100%;
}

.menu .box .info {
  padding: 10px;
}

.menu .box .info h3 {
  color: var(--main-color);
  margin-bottom: 10px;
}

.menu .box p:first-of-type {
  color: var(--paragraph-color);
  font-size: 12px;
  margin-bottom: 10px;
}

.menu .box p:last-of-type {
  font-weight: bold;
  margin-bottom: 10px;
}

.menu .box i {
  color: var(--main-color);
  font-size: 14px;
}

.menu .box button.order-now {
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.menu .box .order-menu {
  background-color: #000000;
  font-size: 14px;
  display: block;
  margin: 10px auto 0;
  transition: var(--main-transition);
}

.menu .box .order-menu:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* start gallery */
.gallary {
  padding-top: 50px;
}

.gallary h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.gallary .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallary .box {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.gallary .image img {
  max-width: 100%;
}

.gallary .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  opacity: 0;
  transition: var(--main-transition);
}

.gallary .box:hover .info {
  opacity: 1;
}

.gallary .info h3 {
  color: var(--main-color);
  font-family: "Macondo", cursive;
  margin-top: 20px;
}

.gallary .info p {
  color: #fff;
  font-size: 12px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.gallary button {
  color: #000;
  background: var(--main-color);
  outline: none;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--main-transition);
}

.gallary .box:hover button {
  bottom: 23px;
}

/* start review */
.review {
  padding-top: 50px;
}

.review h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.review .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.review .box {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.review .box .image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #ccc;
  transition: var(--main-transition);
}

.review .box h3 {
  transition: var(--main-transition);
}

.review .box:hover h3 {
  transform: translateY(-30px);
}

.review .box:hover img {
  transform: translateY(-30px);
}

.review .box .stars i {
  color: var(--main-color);
  font-size: 12px;
  margin-bottom: 15px;
  transition: var(--main-transition);
}

.review .box:hover .stars i {
  transform: translateY(-20px);
}

.review .social {
  transition: var(--main-transition);
  opacity: 0;
}

.review .social i {
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: var(--main-transition);
}

.review .social i:hover {
  color: var(--main-color);
}

.review .box:hover .social {
  opacity: 1;
  transform: translateY(-20px);
}

.review .info p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--paragraph-color);
}

/* ordering */

.ordering {
  padding-top: 50px;
  background-image: url("../images/bg2.jpg");
  background-size: cover;
}

.ordering h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.ordering .container {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .ordering .container {
    flex-direction: column;
  }
}

.ordering .image img {
  max-width: 100%;
  width: 500px;
}

.ordering .form {
  position: relative;
}

.ordering form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

@media (max-width: 991px) {
  .ordering form {
    justify-content: center;
  }
}

.ordering form .column {
  width: 48%;
}

@media (max-width: 991px) {
  .ordering form .column {
    width: 51%;
  }
}

.ordering form .field {
  margin: 10px 0px;
}

.ordering .form input {
  background-color: #eeeeee;
  padding: 5px 12px;
  outline: none;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
}

.ordering .form input:focus {
  border-color: var(--main-color);
}

.ordering .form input::placeholder {
  font-size: 12px;
}

.ordering .form button.order-now {
  background: var(--main-color);
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  transition: var(--main-transition);
  cursor: pointer;
  position: absolute;
  bottom: -80px;
}

/* team */
.team {
  margin-top: 100px;
  background-image: url("../images/bg1.jpg");
  background-size: cover;
}

.team h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.team .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 100px;
}

.team .box {
  padding: 20px;
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  transition: var(--main-transition);
}

.team .box:hover {
  border-radius: 10px;
}

.team .box img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  transition: var(--main-transition);
}

.team .box:hover img {
  border-radius: 10px;
  top: 10px;
}

.team .box .info {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.team .box:hover .info {
  top: 50%;
}

.team .box h3 {
  color: var(--main-color);
  margin-top: 10px;
}

.team .box .info p {
  color: var(--paragraph-color);
  font-size: 14px;
  margin: 10px 0px;
}

.team .box .social i {
  font-size: 12px;
  cursor: pointer;
  transition: var(--main-transition);
}

.team .box .social i:hover {
  color: var(--main-color);
}

/* footer */
footer {
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #eeeeee;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

footer .box {
  text-align: center;
}

footer .box h2 {
  margin-bottom: 10px;
}

footer .box ul li {
  margin-bottom: 5px;
}

footer .box ul li a {
  color: var(--paragraph-color);
  font-size: 14px;
}

footer .box ul li a:hover {
  color: #000;
}

footer .box ul.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .box ul.social li a i {
  color: #000;
  font-size: 12px;
  transition: var(--main-transition);
}

footer .box ul.social li a i:hover {
  color: var(--main-color);
}

@keyframes arrow-right {
  100% {
    transform: translateX(10px);
  }
}
