/* =============== Google Fonts ================ */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+Symbols:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ============= Define CSS Variables ============== */
:root {
  --header-height: 3.5rem;

  /* ------- Colors ------- */
  --orange: #ee4c1e;
  --green: #057738;
  --red: #c03333;
  --dark-blue: #1e232e;
  --medium-blue: #213044;
  --light-blue: #474e5f;
  --white: #ddd;
  --milky: #d7dbe4;
  --milky-light: #afb5c0;
  --black: #0f0f0f;

  /* ------- Shadow ------- */
  --shadow-1: 0 4px 36px 9px rgba(0, 0, 0, 0.9);
  --shadow-2: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  --fds: drop-shadow(0 0 24px rgba(0, 0, 0, 0.4));

  /* ------- Font Family ------- */
  --ff-raleway: "Noto Sans Symbols", sans-serif;
  --ff-satisfy: "Josefin Sans", sans-serif;

  /* ------- Font Size ------- */
  --fs-52: 3.25rem;
  --fs-48: 3rem;
  --fs-40: 1.55rem;
  --fs-36: 2.3rem;
  --fs-22: 1.4rem;
  --fs-20: 1.2rem;
  --fs-16: 1rem;
  --fs-14: 0.9rem;

  /* ------- Font Weight ------- */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;


  /* ------- z-index ------- */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* ============= Base Styling ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-raleway);
  font-size: var(--fs-16);
  background-color: var(--black);
  color: var(--milky);
}

h1 {
  color: var(--white);
  font-family: "Alfa Slab One", sans-serif;
  font-weight: var(--fw-400);
  line-height: 1.2;
}

h2 {
  color: var(--white);
  font-family: "Alfa Slab One", sans-serif;
  font-weight: var(--fw-400);
  line-height: 1;
  padding-inline: 2rem;
}


h3,
h4 {
  color: var(--white);
  font-family: "Alfa Slab One", sans-serif;
  font-weight: var(--fw-400);
  line-height: 1;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
button {
  font-size: var(--fs-20);
  border: none;
  outline: none;
}


/* ============== Re-usable CSS Classes =============== */
.container {
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 1rem;
}

.section-Title {
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.main {
  overflow: hidden;
}



/* ================ Common CSS Property ================ */
.home-Data,
.home-offerCard,
.about-Company div,
.menu-Box2,
.delivery-Content,
.contact-Data,
.contact-Follow,
.contact-Follow div,
.contact-Social,
.footer-Social,
.footer-Content,
.footer-Navigation,
.footer-List {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-Title::after,
.about-Title::after,
.aboutChef-Title::after,
.menu-Box2-Title::after,
.delivery-Title::after,
.contact-Title::after {
  content: '';
  position: absolute;
  width: 33%;
  height: 3px;
  background-color: var(--orange);
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
}



/* ================ Header & Nav ================ */
.header {
  position: fixed;
  width: 100%;
  background: linear-gradient(to top, #f24c24 5%, #0f0f0f 5%);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: box-shadow 0.5s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-Logo {
  color: var(--white);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--ff-satisfy);
}

.nav-Logo img {
  width: 45px;
}

.nav-Logo div {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-family: "Noto Sans Symbols";
}

.nav-Logo div span {
  color: var(--orange);
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
}

.nav-Toggle,
.nav-Close {
  display: flex;
  font-size: 1.5rem;
  color: var(--orange);
  cursor: pointer;
}


/* Navigation Bar for Mobile devices */
@media screen and (max-width: 1024px) {
  .nav-Menu {
    position: fixed;
    width: 100%;
    background-color: var(--black);
    top: -100%;
    left: 0;
    padding-block: 7.5rem 3.5rem;
    box-shadow: var(--shadow-1);
    transition: top 0.5s;
  }
}

.nav-List {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav-Link {
  position: relative;
  color: var(--white);
  font-weight: var(--fw-500);
  letter-spacing: 1px;
}

.nav-Link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  left: 0;
  bottom: -0.3rem;
  transition: width 0.3s;
}

.nav-Link:hover::after {
  width: 50%;
}


.nav-Btn,
.nav-Close {
  position: absolute;
  top: 1rem;
}

.nav-Btn {
  left: 1.5rem;
}

.nav-Close {
  right: 1.5rem;
}

/* Show menu */
.show-Menu {
  top: 0;
}

/* Add Header Shadow */
.header-Shadow {
  box-shadow: var(--shadow-1);
}


/* ================ Button ================ */
.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--fw-500);
  transition: scale 0.3s;
}

.button:hover {
  scale: 1.05;
}



/* ================ Home Section ================ */
.home-Container {
  padding-block: 2rem 1.5rem;
  justify-content: center;
  row-gap: 3.5rem;
  background-image: url(/assets/images/bgr-home.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-Images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.home-Plate {
  max-width: initial;
  width: 320px;
}

.home-Burger {
  position: relative;
  width: 270px;
  top: 1.6rem;
  z-index: 2;
}

.home-Coffee {
  position: absolute;
  width: 90px;
  bottom: 1.3rem;
  right: 1rem;
  z-index: 3;
}

.home-Burger,
.home-Plate,
.home-Coffee {
  filter: var(--fds);
}

.home-Data {
  position: relative;
  text-align: center;
}

.home-Title {
  font-size: var(--fs-36);
  margin-bottom: 3rem;
  position: relative;
}

.home-Title span {
  color: var(--orange);
}

.home-Description {
  color: var(--milky-light);
  margin-bottom: 2.5rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

.home-Icons {
  display: flex;
  column-gap: 3.5rem;
  margin-bottom: 3rem;
}

.home-Icons i {
  color: var(--orange);
  font-size: var(--fs-36);
}

.home-Icons p {
  margin-top: 0.2rem;
  color: var(--white);
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
}

.home-Link {
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
}

.home-Link:hover {
  scale: 1.07;
}

.home-Sticker {
  width: 50px;
  position: absolute;
  bottom: 2rem;
  right: -0.5rem;
  rotate: 15deg;
  opacity: 0.3;
}

.home-Variety {
  margin-top: 3.5rem;
  place-items: center;
}

.home-foodCard {
  width: 100%;
  max-width: 350px;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.home-foodCard img {
  position: relative;
  width: 130px;
  left: -2.3rem;
  bottom: -1.5rem;
  margin-bottom: 0.8rem;
}

.home-foodCard div {
  display: flex;
  flex-direction: column;
  row-gap: 0.1rem;
  justify-content: center;
}

.home-foodCard div h3 {
  font-family: var(--ff-raleway);
  font-size: 1.3rem;
  font-weight: var(--fw-600);
}

.home-foodCard div p {
  color: var(--white);
}

.home-foodCard div a {
  font-weight: var(--fw-500);
  margin-top: 0.6rem;
}

.home-fCard-1 {
  background-color: var(--orange);
}

.home-fCard-1 div a {
  color: var(--black);
}

.home-fCard-2 {
  background-color: var(--green);
}

.home-fCard-2 div a,
.home-fCard-3 div a {
  color: var(--orange);
}

.home-fCard-3 {
  background-color: var(--red);
}

.home-Offer {
  place-items: center;
  margin-top: 3rem;
}

.home-offerCard {
  width: 100%;
  max-width: 300px;
  border-radius: 1rem;
  box-shadow: var(--shadow-1);
  row-gap: 3rem;
  padding-block: 2.5rem 1.5rem;
  margin-bottom: 1rem;
}

.home-offerCard img {
  height: 220px;
  filter: drop-shadow(4px 6px 24px rgba(0, 0, 0, 0.7));
  animation: upDown 2s linear infinite;
  -webkit-animation: upDown 2s linear infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.5rem);
  }

  100% {
    transform: translateY(0);
  }
}

.homeOfferCard-Details {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  row-gap: 0.7rem;
  padding-left: 1.5rem;
}

.homeOfferCard-Details .para-1,
.homeOfferCard-Details a {
  font-weight: var(--fw-500);
  color: var(--orange);
}

.homeOfferCard-Details .para-2 {
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
  color: var(--white);
  line-height: 2rem;
}

.homeOfferCard-Details .para-3 {
  font-weight: var(--fw-500);
  color: var(--white);
  margin-bottom: 1.3rem;
}


/* ================ Portofolio Section ================ */

.portofolio-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.portofolio-card {
  position: relative;
  width: 300px;
  background-image: url(/assets/images/card-bgr.jpg);
  background-size: cover;
  border-radius: 2rem;
  padding: .8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  margin-inline: 5px;
  margin-block: .5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.portofolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg,
      #ff6a00,
      #ffcc00,
      #ff6a00);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portofolio-card:hover {
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(to right, rgb(242, 76, 36) 0%, rgb(242, 76, 36) 44%, rgb(242, 76, 36) 100%);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  z-index: 1;
}

.tilt {
  overflow: hidden
}

.portofolio-img {
  height: 300px;
  overflow: hidden;
  margin-bottom: 10px;
}

.portofolio-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.portofolio-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #f24c24;
  margin: 0 0 5px;
  letter-spacing: -.5px;
  text-align: justify;
  line-height: 1.6;
  font-family: "Poppins";
}

.portofolio-description {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: justify;
  font-family: "Poppins";
}

.portofolio-button {
  text-align: center;
}

.portofolio-button button {
  width: 100%;
  display: inline-block;
  color: #fff;
  background-color: #f24c24;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portofolio-button button:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ================ Logos Fleet ================ */

.logos {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

/* gradient mask kiri & kanan */
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(55px, 10vw, 200px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(238, 76, 36, 0.3),
      rgba(255, 255, 255, 0));
}

.logos::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(238, 76, 36, 0.3),
      rgba(255, 255, 255, 0));
}

/* TRACK YANG BERGERAK */
.logos-track {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}

.logos:hover .logos-track {
  animation-play-state: paused;
}

/* SLIDE STATIS */
.logos-slide {
  display: flex;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
  flex-shrink: 0;
}

/* ANIMASI SEAMLESS */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ================ About Section ================ */
.about-Container {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.about-Data {
  place-items: center;
}

.about-Image {
  max-width: 500px;
  width: 100%;
  border-radius: 0.8rem;
}

.about-Details {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-bottom: 2rem;
}

.about-Details-reverse{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  order: 1;
}

.about-Image-reverse{
  order: 2;
}

.about-Title,
.about-Title-reverse {
  position: relative;
  font-size: var(--fs-36);
  margin-bottom: 1.3rem;
}

.about-Title::after {
  width: 25%;
  left: 0;
  transform: translateX(0);
}

.about-Title-reverse::after{
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: #ed4d1d;
}


.about-Description {
  color: var(--milky-light);
  font-weight: var(--fw-500);
  margin-bottom: .5rem;
  line-height: 1.4;
}

.about-Description-reverse {
  color: var(--milky-light);
  font-weight: var(--fw-500);
  margin-bottom: .5rem;
  line-height: 1.4;
}

.about-Signature {
  font-size: var(--fs-36);
  font-family: var(--ff-satisfy);
}

.about-Name {
  font-weight: var(--fw-500);
}

.about-Name span {
  font-size: var(--fs-22);
}

.about-Company {
  place-items: center;
  margin-bottom: 2rem;
}

.about-Company div {
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  row-gap: 0.3rem;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-1);
}

.about-Company div i {
  color: var(--orange);
  font-size: var(--fs-36);
}

.about-Company div h3 {
  font-size: var(--fs-22);
  font-family: var(--ff-raleway);
}

.about-Company div p {
  font-weight: var(--fw-500);
}

.aboutChef-Title {
  font-weight: var(--fw-500);
  position: relative;
}

.aboutChef-Title::after,
.menu-Box2-Title::after {
  width: 16%;
}

.chef-List {
  place-items: center;
}

.chef-Card {
  position: relative;
  max-width: 320px;
  border-radius: 0.7rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chef-Image {
  width: 100%;
  transition: transform 0.4s;
}

.chef-Card:hover .chef-Image {
  transform: scale(1.1);
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.chef-Card:hover .layer {
  opacity: 1;
  visibility: visible;
}

.image-Wrapper {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.image-Wrapper p {
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
  padding: 1rem;
}

.chef-Card:hover .image-Wrapper {
  opacity: 1;
  visibility: visible;
}

.chefSocial-Icons {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 1rem;
}

.chefSocial-Icons div {
  background-color: var(--orange);
  padding: 0.15rem;
  border-radius: 0.3rem;
  transition: transform 0.4s;
}

.chefSocial-Icons i {
  font-size: var(--fs-36);
  color: var(--black);
}

.chefSocial-Icons div:hover {
  transform: scale(1.2);
}


/* ================ CTA Section ================ */
.cta {
  background-image: url(/assets/images/bgr-hitam-orange.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ee4b1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 3rem) 1.5rem;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .23), 0 3px 12px rgba(0, 0, 0, .16);
}

.cta-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 6vw, 3rem);
}

/* Content */
.cta-content {
  max-width: 500px;
}

.cta .section-subtitle {
  font-size: clamp(.8rem, 2.2vw, 1.1rem);
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.cta .section-title {
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  line-height: 1.25;
}

/* Button */
.cta .btn {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  padding: clamp(0.9rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
  white-space: nowrap;
}

/* Mobile layout */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta .btn {
    align-self: center;
  }
}


/* ================ Social Section ================ */

.contact-Follow {
  row-gap: 1.5rem;
}

.contact-Follow i {
  font-size: 2.5rem;
  color: var(--orange);
  padding: 4px 8px;
  border-radius: 5px;
  transform: scale(1.2);
  transition: transform 0.4s;
}

.contact-Follow div {
  row-gap: 0.5rem;
}

.contact-Follow div h3 {
  font-family: var(--ff-raleway);
  font-weight: var(--fw-600);
}

.contact-Follow div p {
  font-weight: var(--fw-500);
}

.underline {
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  opacity: 0.3;
}

.contact-Social,
.footer-Social {
  row-gap: 1.5rem;
}

.contact-Social h2,
.footer-Social h3,
.footer-Navigation h3 {
  font-family: var(--ff-raleway);
  font-weight: var(--fw-500);
  margin-top: -0.5rem;
}

.social-Links,
.footer-Icons {
  display: flex;
  column-gap: 1.3rem;
}

.social-Links a,
.footer-Icons a {
  font-size: 1.3rem;
  color: var(--orange);
  padding: 3px 6px;
  border-radius: 5px;
  transform: scale(1.2);
  transition: transform 0.4s;
}

.social-Links a:hover,
.contact-Follow i:hover,
.footer-Icons a:hover {
  color: var(--black);
  background-color: var(--orange);
  transform: scale(1);
}

/* ================ Gallery ================ */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #0f0f0f;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  width: 80%;
  margin: 0 auto;
  padding: 5px;
  margin-bottom: 2rem;
}

.gallery-item {
  flex-basis: 32.7%;
  opacity: .80;
  cursor: pointer;
  margin-inline: 3px;
  margin-block: 5px;
}

.gallery-item:hover {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.gallery-content {
  font-size: .8em;
}

.lightbox {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  overflow: auto;
  top: 0;
  left: 0;
}

.lightbox-content {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 5% auto;
}

.lightbox-content img {
  border-radius: 7px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 7px;
  top: 45%;
  cursor: pointer;
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #ee4b1e;
}

@media (max-width: 480px) {
  .gallery-item {
    flex-basis: 100%;
    margin: 7px;
  }

  .lightbox-content {
    position: relative;
    width: 100%;
    height: 50%;
    margin: 50% auto;
  }

  .lightbox-content img {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

@media (max-width: 767px) and (min-width: 481px) {
  .gallery-container {
    justify-content: center;
  }

  .gallery-container > * {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (min-width: 1200px) {
  .lightbox-content {
    height: 100vh;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
  }

  .gallery-container > * {
    flex: 0 0 30%;
    max-width: 30%;
  }
}





/* ================ Footer ================ */
.footer {
  position: relative;
  box-shadow: var(--shadow-1);
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgb(238, 75, 30, .2);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}



@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

.footer-Container {
  padding-block: 3rem 2rem;
  row-gap: 3rem;
  place-items: center;
}

.footer-Content {
  row-gap: 0.5rem;
}

.footer-Logo img {
  width: 40px;
}

.footer-Logo div {
  font-family: var(--ff-raleway);
  font-size: 1.5rem;
}

.footer-Logo div span {
  font-size: 2rem;
}

.footer-Description {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

.footer-Navigation,
.footer-List {
  row-gap: 1rem;
}

.footer-Link {
  color: var(--milky);
  font-weight: var(--fw-500);
  transition: color 0.4s;
}

.footer-Link:hover {
  color: var(--orange);
}

.footer-Container .underline {
  opacity: 0.2;
}

.footer-Copy {
  color: var(--white);
  font-size: var(--fs-14);
  text-align: center;
  margin-block: -1rem 1.5rem;
}



/* ================ Scroll Up ================ */
.Scrollup {
  display: inline-flex;
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--black);
  color: var(--orange);
  padding: 6px;
  font-size: 1.25rem;
  border-radius: 5px;
  box-shadow: var(--shadow-1);
  z-index: var(--z-tooltip);
  transition: transform 0.4s, bottom 0.4s;
}

.Scrollup:hover {
  transform: translateY(-0.5rem);
}

/* Show Scroll up */
.show-Scroll {
  bottom: 3rem;
}



/* ================ ScrollBar ================ */
::-webkit-scrollbar {
  width: 0.7rem;
  background-color: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(212, 212, 212);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--light-blue);
}



/* ================ Break-points ================ */
/* for small devices */
@media screen and (max-width: 539px) {
  .container {
    margin-inline: 1rem;
  }

  .nav-Close {
    right: 1rem;
  }

  .home-Plate {
    width: 270px;
  }

  .home-Burger {
    width: 210px;
    top: 1.4rem;
  }

  .home-Coffee {
    width: 70px;
    bottom: 1.1rem;
  }

  .home-Title {
    font-size: 1.8rem;
  }

  .home-Description {
    margin-bottom: 2rem;
    font-weight: var(--fw-400);
    font-size: var(--fs-16);
    padding-inline: .5rem;
  }

  .home-Icons {
    column-gap: 2.5rem;
  }

  .home-Icons i {
    font-size: 2rem;
  }

  .home-Icons p {
    font-weight: var(--fw-400);
    font-size: 1rem;
  }

  .home-Link {
    font-size: var(--fs-20);
  }

  .home-Sticker {
    width: 40px;
  }

  .menu-Container {
    grid-template-columns: 220px;
    justify-content: center;
  }

  .menu-Box1 {
    grid-template-columns: 200px;
    justify-content: center;
  }

  .recipe-Wrapper {
    margin-bottom: 2rem;
  }

  .recipe-Image {
    width: 100%;
  }

  .r-Img {
    display: none;
  }

  .recipe-Text {
    color: var(--orange);
    order: 1;
  }

  .nav-Logo div {
    font-size: 1rem;
    font-family: "Noto Sans Symbols";
  }

  .nav-Logo div span {
    color: var(--orange);
    font-size: 1rem;
  }
}




/* for medium devices */
@media screen and (min-width: 540px) {

  .home-Container,
  .about-Container,
  .menu-Container,
  .delivery-Container,
  .contact-Container {
    grid-template-columns: 400px;
    justify-content: center;
  }

  .menu-Box1 {
    grid-template-columns: 140px 1fr;
    gap: 2.5rem;
  }

  .recipe-Text {
    font-size: var(--fs-14);
  }

  .menu-Items {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1.5rem;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {

  .home-Container,
  .about-Container,
  .menu-Container,
  .delivery-Container {
    grid-template-columns: 550px;
    justify-content: center;
  }

  .home-Plate {
    width: 450px;
  }

  .home-Burger {
    width: 360px;
    top: 2.3rem;
  }

  .home-Coffee {
    width: 130px;
    bottom: 2rem;
  }

  .home-Title {
    font-size: 3rem;
  }

  .menu-Box1 {
    grid-template-columns: 170px 1fr;
    gap: 3.5rem;
  }

  .menu-Items {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-Image-1 {
    width: 450px;
  }
}


/* for large devices */
@media screen and (min-width: 1024px) {
  .section {
    padding-block: 7rem 2rem;
  }

  .section-Title {
    margin-bottom: 2rem;
  }

  .section-Title::after {
    width: 8%;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav-Close,
  .nav-Toggle {
    display: none;
  }

  .nav-List {
    flex-direction: row;
    column-gap: 2.5rem;
  }

  .nav-Btn {
    position: initial;
  }

  .nav-Menu {
    display: flex;
    align-items: center;
    column-gap: 3rem;
  }

  .nav-Logo img {
    width: 75px;
  }

  .footer-Container {
    grid-template-columns: repeat(3, 270px);
    justify-content: space-between;
  }

  .footer-Copy,
  .footer-Container .underline {
    grid-column: 1 / 4;
  }

  .footer-Content,
  .footer-Navigation,
  .footer-List {
    align-items: flex-start;
  }

  .footer-Description {
    text-align: initial;
    font-size: var(--fs-14);
  }

  .Scrollup {
    right: 3rem;
  }
}


@media screen and (min-width: 1150px) {
  .container {
    margin-inline: 0;
  }

  .header {
    padding-inline: 3rem;
  }

  .footer-Container {
    padding-inline: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-Container {
    grid-template-columns: 550px 450px;
    align-items: center;
    column-gap: 5.5rem;
    padding-block: 3rem 1rem;
    place-items: center;
  }

  .home-Plate {
    width: 520px;
  }

  .home-Burger {
    width: 420px;
    top: 2.5rem;
  }

  .home-Coffee {
    width: 150px;
  }

  .home-Data {
    text-align: initial;
    align-items: flex-start;
  }

  .home-Title {
    font-size: var(--fs-36);
  }

  .home-Title::after {
    left: 0;
    transform: translateX(0);
    bottom: -0.9rem;
  }

  .home-Icons {
    column-gap: 4.5rem;
    margin-bottom: 3.5rem;
  }

  .home-Icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-Icons i {
    font-size: 2.5rem;
    opacity: 0.9;
  }

  .home-Icons p {
    font-weight: var(--fw-500);
  }

  .home-Link {
    font-size: var(--fs-20);
  }

  .home-Sticker {
    width: 70px;
    bottom: 1rem;
    right: 1rem;
  }

  .home-Variety {
    grid-column: 1 / 3;
    grid-template-columns: repeat(3, 340px);
    margin-top: 5.5rem;
  }

  .home-Offer {
    grid-column: 1 / 3;
    grid-template-columns: repeat(2, 520px);
    gap: 2rem;
  }

  .home-offerCard {
    max-width: initial;
    flex-direction: initial;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-block: 2rem 1rem;
  }

  .home-offerCard img {
    margin-right: 1.5rem;
  }

  .homeOfferCard-Details {
    align-self: center;
  }

  .about-Container,
  .menu-Container {
    grid-template-columns: 1120px;
  }

  .about-Data {
    grid-template-columns: repeat(2, auto);
    place-items: initial;
    justify-content: center;
    column-gap: 3.5rem;
  }

  .about-Company,
  .chef-List {
    grid-template-columns: repeat(3, 330px);
    justify-content: center;
    margin-top: 2rem;
  }

  .about-Company div {
    max-width: initial;
  }

  .menu-Box1 {
    grid-template-columns: 300px 1fr;
    column-gap: 5rem;
    padding-bottom: 2rem;
    margin-block: 3.5rem 2.5rem;
  }

  .s-Img {
    display: none;
  }

  .recipe-Text {
    color: var(--orange);
    padding: 2.5rem 0 1rem;
    line-height: 2.5rem;
  }

  .recipe-Card {
    grid-template-columns: repeat(2, 170px);
    column-gap: 1rem;
    justify-items: left;
  }

  .recipe-Box {
    width: 100px;
    height: 100px;
  }

  .recipe-Box img {
    width: 90px;
  }

  .recipe-Title {
    font-size: var(--fs-22);
  }

  .recipe-Description {
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
  }

  .menu-Items {
    padding-block: 3rem;
    grid-template-columns: repeat(3, 250px);
    gap: 5.5rem 2.5rem;
  }

  .menu-Card {
    padding: 9rem 9rem 1.5rem 1rem;
    border-radius: 1rem;
  }

  .menu-Image {
    width: 170px;
    top: -1.6rem;
  }

  .menu-Title {
    font-size: var(--fs-22);
  }

  .menu-Button {
    right: 1rem;
    bottom: 1.2rem;
  }

  .delivery-Container {
    grid-template-columns: repeat(2, 500px);
    column-gap: 4rem;
    margin-block: 7rem 2rem;
  }

  .delivery-Image-1 {
    width: initial;
  }

  .delivery-Content {
    align-items: flex-start;
  }

  .delivery-Title {
    margin-bottom: 1.5rem;
  }

  .delivery-Title::after {
    width: 30%;
    left: 0;
    transform: translateX(0);
  }

  .delivery-Image-2 {
    align-self: flex-end;
    margin-top: -2.5rem;
  }

  .contact-Container {
    grid-template-columns: 540px 510px;
    place-items: center;
    column-gap: 3.5rem;
  }

  .contact-Form {
    order: 1;
  }

  .contact-Group {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-Area {
    height: 15rem;
  }

  .contact-Btn {
    justify-self: left;
    margin-top: 2rem;
  }

  .contact-Msg {
    bottom: 4.5rem;
    right: 0.5rem;
  }

  .contact-Data {
    display: grid;
  }

  .contact-Title {
    justify-self: left;
    margin-bottom: 1rem;
  }

  .contact-Title::after {
    width: 50%;
  }

  .contact-Details {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-Follow div p {
    text-align: center;
  }

  .contact-Social {
    flex-direction: row;
    justify-content: space-between;
  }
}