* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: Nunito, Arial, sans-serif;
  /* Added fallback fonts */
}

h1 {
  font-size: 250%;
}

p {
  font-size: 140%;
  line-height: 150%;
  color: #333;
}

/* Navigation bar */
#navbar {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
}

#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),
#navbar .right a:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

.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;
}






/* t&c */
.intro {
  margin: auto;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 2%;
}

.intro h1 {
  text-align: center;

}

.intro p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}







.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.section__headline {
  font-size: 50px;
  color: #333;
  text-align: center;
}

/* .c-faqs__headline {
    font-size: 24px;
    color: #1e88e5;
  } */

.c-faqs {
  list-style: none;
  padding: 0;
  margin-top: 4%;
}

.c-faq {
  border: 1px solid aqua;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.c-faq__title {
  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
  color: #1e88e5;
}

.c-faq__title::after {
  content: '\25BE';
  display: inline-block;
  margin-left: 5px;
  color: black;
}

.c-faq__answer {
  display: none;
  font-size: 22px;
  color: #333;
}

.c-faq--active .c-faq__answer {
  display: block;
}

.banner{
  margin: auto;
  /* margin-left: 30%; */
  margin-top: 1%;
  /* width: 500vh; */
  height: 35vh;
  margin-left: 4%;
}
.banner img{
  height: 30vh;
  width: 180px;
}













/* footer */
footer {
  background-color: #333;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* height: 35vh; */
}

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; */
}