@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-regular.woff"),
    url("/assets/fonts/poppins-regular.woff2");
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-medium.woff"),
    url("/assets/fonts/poppins-medium.woff2");
  font-weight: 500; /* medium */
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-semibold.woff"),
    url("/assets/fonts/poppins-semibold.woff2");
  font-weight: 600; /* semi-bold */
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-bold.woff"),
    url("/assets/fonts/poppins-bold.woff2");
  font-weight: 700; /* bold */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --max-element-width: 1200px;
  --min-page-width: 400px;
  --header-height: 100px;
  --background-clr: white;
  --element-background-clr: #c83c37;
  --scroll-speed: 120s;
}

::-webkit-scrollbar {
  width: 0.9rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--element-background-clr);
  width: 1rem;
  border-radius: 20px;
  border: 1px solid transparent;
  background-clip: content-box;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 2rem;
  min-width: var(--min-page-width);
}

section {
  background: var(--background-clr);
  max-width: var(--max-element-width);
  margin: auto;
  position: relative;
}

header {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: var(--background-clr);
  width: 100%;
  height: var(--header-height);
  padding: 20px;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-logo {
  width: 30%;
}

.logo {
  position: relative;
  font-size: 28px;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0;
  animation: slideLeft 0.5s ease-in-out forwards;
}

.menu {
  width: 70px;
  height: 70px;
  background: url(/assets/images/bmenu.webp);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: slideRight 0.5s ease-in-out forwards;
  animation-delay: 0.5s;
  margin-right: 3rem;
}

.navigation {
  display: flex;
  opacity: 0;
  transition: 0.5s;
}

.navigation.active {
  opacity: 1;
}

li {
  text-decoration: none;
  align-self: center;
  list-style: none;
  width: fit-content;
}

.navigation li a {
  display: block;
  color: var(--element-background-clr);
  font-size: 16px;
  margin-left: 15px;
  font-weight: 600;
  opacity: 0;
  text-transform: uppercase;
}

.navigation.active li a {
  animation: slideRight 0.5s ease-in-out forwards;
  animation-delay: calc(0.2s * var(--i));
}

.container {
  display: flex;
  margin: auto;
  gap: 0.5rem;
  padding-top: var(--header-height);
  height: calc(var(--header-height) + 40rem);
  position: relative;
}

.box {
  width: 25%;
  height: 100%;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
  background: var(--background-clr);
  overflow: hidden;
}

.imgBx {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  opacity: 0;
  animation: slideRight 0.5s ease-in-out forwards;
  animation-delay: calc(0.2s * var(--i));
}

.imgBx.active {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: calc(100% -100px);
  height: 40rem;
  opacity: 1;
  z-index: 100;
}

.imgBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.imgBx:hover img {
  transform: scale(1.2);
}
.imgBx.active:hover img {
  transform: scale(1);
}

.footer {
  width: 100%;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.copyrightText {
  color: #111;
  font-weight: 500;
  opacity: 0;
  animation: slideRight 0.5s ease-in-out forwards;
  animation-delay: 2.5s;
}

.myButton {
  box-shadow: 0px 2px 15px 7px #f29c93;
  background: linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
  background-color: var(--element-background-clr);
  border-radius: 25px;
  border: 1px solid #d83526;
  cursor: pointer;
  color: var(--background-clr);
  font-family: Arial;
  font-size: 19px;
  font-weight: bold;
  padding: 13px 40px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #b23e35;
}

.myButton:hover {
  background: linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
  background-color: #ce0100;
}

#order-now {
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  animation: slideLeft 0.5s ease-in-out forwards;
  animation-delay: calc(0.2s * var(--i));
  color: var(--background-clr);
}

@keyframes slideRight {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.blinking {
  animation: blinkingText 1.5s infinite;
  font-size: 25px;
  padding: 0px 0px 10px 0px;
}

@keyframes blinkingText {
  0% {
    color: var(--element-background-clr);
  }

  65% {
    color: var(--element-background-clr);
  }

  70% {
    color: transparent;
  }

  80% {
    color: transparent;
  }

  100% {
    color: var(--element-background-clr);
  }
}

#marquee-section {
  height: 100%;
}

.marquee-title,
.marquee-footer {
  background-color: var(--element-background-clr);
  height: 40px;
  color: var(--background-clr);
  padding-left: 5px;
  font-size: 25px;
  text-align: center;
}

.marquee-title {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.marquee-footer {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  margin-bottom: 1rem;
}

.marquee-container {
  padding: 3px;
  width: 100%;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
}

.marquee {
  /* position: relative; */
  width: var(--max-element-width);
  height: fit-content;
  display: flex;
  gap: 0.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 1rem;
}

.marquee-image {
  width: 150px;
  height: 150px;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Make it move */
@keyframes scroll {
  0% {
    left: -20px;
  }

  100% {
    left: -800px;
  }
}

#specials {
  gap: 2rem;
  min-height: fit-content;
  padding-bottom: 3rem;
  background: var(--background-clr);
  border-bottom: 6px solid var(--element-background-clr);
}

.special-container {
  max-width: var(--max-element-width);
  height: min-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
}

.specials-link {
  text-decoration: none;
}

.card {
  width: 300px;
  height: 30rem;
  display: flex;
  flex-direction: column;
  background: var(--element-background-clr);
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.combo-image {
  position: relative;
  background: var(--background-clr);
  top: -40px;
  left: 20px;
  width: 260px;
  height: 260px;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.combo-image img {
  max-width: 100%;
  border-radius: 4px;
}

.combo-description {
  margin-top: -60px;
  padding: 10px 15px;
  padding-top: 0;
  text-align: start;
  color: var(--background-clr);
}

#about-us {
  padding-top: 0;
  height: 100%;
}

#about-us-inner {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 75px;
  border-bottom: 6px solid var(--element-background-clr);
}

.red-header {
  width: 100%;
  text-align: center;
  color: var(--element-background-clr);
}

.img3 {
  height: 99%;
  width: 99%;
  background: grey;
  margin: 3px;
  float: left;
  display: flex;
  border: 2px solid var(--element-background-clr);
}

.image3 {
  height: 300px;
  width: 550px;
  margin: 3px;
}

@media (max-width: 768px) {
  section header {
    padding-top: 50px;
    height: var(--header-height);
  }

  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    margin: 0;
    display: flex;
    z-index: 1000;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
    background: var(--element-background-clr);
    padding: 0;
  }

  .navigation li {
    align-self: start;
  }

  .navigation li a {
    color: var(--background-clr);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .container {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
  }

  .box {
    width: 100%;
    height: inherit;
    border-bottom: 10px solid var(--background-clr);
    height: 200px;
  }

  .imgBx.active {
    top: var(--header-height);
    left: 0;
    height: calc(100% - var(--header-height));
  }

  .special-container {
    flex-direction: column;
    width: 100%;
    gap: 6rem;
  }

  .footer {
    width: fit-content;
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
    margin-bottom: 20px;
    margin: auto;
  }

  .footer .blinking {
    font-size: 19px;
    font-style: Arial;
  }

  .copyrightText {
    padding: 0;
    margin: 0;
  }

  .container-2 {
    width: 100%;
  }
}
