/** Srart Variable **/
:root {
  --secound-color: #333;
  --high-color: #000000;
  --third-color: rgba(139, 139, 139, 0.7);
  --font-color: #000000;
}

/** End Variable **/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--high-color);
  transition: all 2s;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

/** Small **/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/** Medium **/
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/** Large **/
@media (min-width: 1270px) {
  .container {
    width: 1270px;
  }
}

/** Start Header Design **/
.header-text {
  position: relative;
}

.header-text .container::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 120px;
  background-color: white;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

.header-text .container h1 {
  color: white;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
  font-size: 70px;
  text-transform: uppercase;
}

.header-text .container p {
  color: white;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 100px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .header-text .container h1 {
    font-size: 50px;
  }

  .header-text .container p {
    font-size: 14px;
  }
}

.light-mode {
  background-color: var(--secound-color);
  transition: all 2s;
}
/** Start the Light & Dark mode **/
header .light-mode {
  color: black;
  position: fixed;
  right: 30px;
  bottom: 30px;
  font-size: 30px;
  background-color: white;
  z-index: 10;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 50%;
}
header .light-mode .fa-moon {
  display: none;
}
/** End the Light & Dark mode **/
/** Start NavBar Design **/
nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  position: relative;
}

nav .container::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: white;
  bottom: -15px;
  width: calc(100% - 30px);
}

nav .container .logo a img {
  width: 200px;
  margin: 0;
}

@media (max-width: 768px) {
  nav .container .logo a img {
    width: 150px;
    margin-top: 10px;
  }
}

nav .container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .container .nav-links li {
  padding: 0 40px;
}

nav .container .nav-links li:last-child {
  padding-right: 10px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  nav .container .nav-links {
    position: absolute;
    right: 0;
    height: calc(100vh - 120px);
    top: 115px;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    z-index: 2;
  }
  .light-mode nav .container .nav-links {
    background-color: var(--secound-color);
    opacity: 0.9;
  }
}

nav .container .nav-active {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}

nav .container .nav-links li a {
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 17px;
  opacity: 0.7;
}

nav .container .nav-links li a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  nav .container .nav-links li {
    opacity: 0;
  }
  nav .container .nav-links li:last-child {
    padding-left: 0;
  }
  nav .container .nav-links li a {
    color: white;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 1;
  }
  nav .container .nav-links li a:hover {
    color: white;
  }
}

nav .container .nav-links li a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

nav .container .burger {
  display: none;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
  nav .container .burger {
    display: block;
  }
}

nav .container .burger div {
  width: 25px;
  height: 4px;
  background-color: white;
  margin: 7px;
  transition: all 0.5s ease;
}

@keyframes navLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-14px, 5px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-10px, -2px);
}

/** End NavBar Design **/
/** Start Design the MenuCard Title **/
#Menu-Card {
  margin-top: 200px;
}
/** End Design the MenuCard Title **/
/** Start the only cash design **/
.cash {
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cash {
    font-size: 18px;
    color: red;
    margin-top: -36px;
  }
}
/** End the only cash design **/
/** Start Menu Card **/
.drinks {
  min-height: 50vh;
  position: relative;
  margin-top: 100px;
  margin-bottom: 100px;
}

.drinks .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 20px;
}

.drinks .container .space-2 {
  margin-top: -20px;
}

@media (max-width: 767px) {
  .drinks .container .space-2 {
    margin-top: -30px;
  }
}

.drinks .container main div {
  border: 1px solid var(--secound-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  margin: 20px 30px;
  padding: 23px 0;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  background-color: var(--secound-color);
}
.light-mode .drinks .container main div {
  background-color: var(--high-color);
  transition: all 2s;
}

.drinks .container main div:hover {
  background-color: var(--third-color);
}

.drinks .container main div a {
  text-decoration: none;
  color: var(--font-color);
  font-size: 18px;
  padding: 30px;
  font-weight: 700;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: white;
}

/** End Menu Card **/
/** Start The Footer **/
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

footer .container .footer-text {
  color: white;
  font-size: 17px;
  font-weight: 500;
}

footer .container .c-right {
  color: white;
}

/** End The Footer **/
/** Copy right **/
.c-right {
  background-color: var(--secound-color);
  padding: 30px 0;
  margin-top: 50px;
}
.light-mode .c-right {
  background-color: var(--high-color);
  transition: all 2s;
}

.c-right .container {
  text-align: center;
}

.c-right .container p {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

/** Copy right  **/
