* {
	box-sizing: border-box;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
    background-color: white;
  }
  
  .container {
    margin-top: 0;
  }
  
  video {
    width: 100%;
    height: auto;
  }
  
  #navbar {
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9); 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10px 20px;
    z-index: 1000;
}

#navbar a {
    color: black;
    text-decoration: none;
    padding: 8px 16px; 
    border-radius: 20px;
    transition: background-color 0.3s ease; 
}

#navbar .left a {
    margin-right: 20px;
    font-size: 20px;
    vertical-align: middle;
}

#navbar .right a {
    margin-left: 20px;
    font-size: 20px;
    vertical-align: middle;
}

#navbar .left img {
    height: 40px;
}

#navbar .left a:hover:not(:first-child) {
    background-color: rgba(255, 0, 0, 0.8); 
}

#navbar .right a:hover {
    background-color: rgba(255, 0, 0, 0.8); 
}

#navbar .right {
  margin-right: 40px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


/* popup cart */
.addtocart-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgba(0,0,0,0.8);
}

.addtocart-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}

.close-button {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.delivery-button,
.pick-up-button,
.dine-in-button {
  display: block;
  width: 30%;
  margin-top: 10px;
  padding: 10px;
  font-size: 20px;
  margin: 10px auto;
}











/* banner */
.banner {
    width: 100%;
    /* margin: 20px auto; */
    overflow: hidden;
    position: relative;
    height: 570px;
   margin-top: 4%;
  
  }
  
  .banner img {
    width: 100%;
    display: none;
    height: 570px;
    object-fit: cover;
    /* padding-top: 1%; */
  }
  
  .banner img:first-child {
    display: block;
  }





  /* intro */
  .introo {
    text-align: center;
    margin-left: 3%;
    margin-right: 3%;
  }
  .introo h2{
    font-size: 50px;
  }
  .introo p{
    font-size: 30px;
    margin: auto;
  }



  /* banner 2 */
  .ban2 {
    position: relative;
    width: 95%;
    margin-top: 2%;
    /* margin: 40px; */
    margin-left: 2%;
  }
  
  .ban2 img {
    width: 100%;
    height: 50vh;
  }
  
  






  /* timeline */
 
  
  
  h1 {
    font-size: 2.5rem;
  }
  
  
  
  
  .timeline ul {
    /* background: #566b80; */
    padding: 50px 0;
  }
  
  .timeline ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: black;
  }
  
  .timeline ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: inherit;
    z-index: 1;
  }
  
  .timeline ul li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.536);
    color: white;
    font-size: 20px;
  }
  
  .timeline ul li div::before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    height: 0;
    border-style: solid;
  }
  
  .timeline ul li:nth-child(odd) div {
    left: 45px;
  }
  
  .timeline ul li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent red transparent transparent;
  }
  
  .timeline ul li:nth-child(even) div {
    left: -439px;
  }
  
  .timeline ul li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent red;
  }
  
  time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  
 
  
  .timeline ul li::after {
    transition: background 0.5s ease-in-out;
  }
  
  .timeline ul li.in-view::after {
    background: red;
  }
  
  .timeline ul li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  
  .timeline ul li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
  }
  
  .timeline ul li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
  }
  
  .timeline ul li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
  }
  
  
  
  @media screen and (max-width: 900px) {
    .timeline ul li div {
      width: 250px;
    }
    .timeline ul li:nth-child(even) div {
      left: -289px;
      /*250+45-6*/
    }
  }
  
  @media screen and (max-width: 600px) {
    .timeline ul li {
      margin-left: 20px;
    }
    .timeline ul li div {
      width: calc(100vw - 91px);
    }
    .timeline ul li:nth-child(even) div {
      left: 45px;
    }
    .timeline ul li:nth-child(even) div::before {
      left: -15px;
      border-width: 8px 16px 8px 0;
      border-color: transparent #f45b69 transparent transparent;
    }
  }
  
  
 
  .timeline-clippy ul li::after {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
  
  .timeline-rhombus ul li::after {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  
  .timeline-rhombus ul li div::before {
    bottom: 12px;
  }
  
  .timeline-star ul li::after {
    clip-path: polygon(
      50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%
    );
  }
  
  .timeline-heptagon ul li::after {
    clip-path: polygon(
      50% 0%,
      90% 20%,
      100% 60%,
      75% 100%,
      25% 100%,
      0% 60%,
      10% 20%
    );
  }
  
  .timeline-infinite ul li::after {
    animation: scaleAnimation 2s infinite;
  }
  
  @keyframes scaleAnimation {
    0% {
      transform: translateX(-50%) scale(1);
    }
    50% {
      transform: translateX(-50%) scale(1.25);
    }
    100% {
      transform: translateX(-50%) scale(1);
    }
  }
  









  /* footer */
footer {
    background-color: #333;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  footer img {
    height: 30px;
    margin-right: 10px;
  }
  
  .column {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .column h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
  }
  
  .column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .column ul li {
    margin-bottom: 8px;
  }
  
  .column ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
  }
  
  .column ul li a:hover {
    text-decoration: underline;
  }
  
  .store-icons img {
    height: 70px;
    /* margin-right: 10px; */
  }
  