@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #ff8f00;
  --alternate-color: #ecbe64;
  --background-color: #fbf8f2;
  --secondary-color: #fdf0de;
  --desktop-logo-size: 20px;
  --mobile-logo-size: 15px;
  --desktop-hero-font-size: 38px;
  --mobile-hero-font-size: 33px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--background-color);
  font-family: "Poppins";
  scroll-behavior: smooth;
}
.logo {
  position: relative;
  padding: 8px;
  width: 100%;
}
.logo-img {
  width: 6rem;
  height: 6rem;
}
.tagline {
  position: absolute;
  bottom: 23%;
}
.slogan {
  font-size: small;
}
.text {
  font-size: var(--desktop-logo-size);
  font-weight: bold;
}
header {
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
}
nav {
  padding: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.text .express {
  color: var(--primary-color);
}
.text .bite {
  color: black;
}
.slogan::before {
  content: "── ";
  color: var(--primary-color);
}
.slogan::after {
  content: "   ──";
  color: var(--primary-color);
}
.links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.links li {
  list-style: none;
}
.links a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
}
.links a.active {
  color: var(--primary-color);
}
.hamburger {
  display: none;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: #000;
  padding: 5px 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--primary-color);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

#home {
  margin-top: 5%;
  width: 100%;
  min-height: 75vh;
  position: relative;
  background-color: var(--background-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ff8f00' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero {
  padding: 30px;
  display: flex;
  justify-content: space-evenly;
  height: 100%;
  margin-top: 3%;
}
.highlight {
  color: var(--primary-color);
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero-text h1 {
  font-weight: 700;
}
.hero-text h2 {
  font-weight: 500;
}
.hero-text h1,
.hero-text h2 {
  font-size: var(--desktop-hero-font-size);
}
.hero-food {
  position: relative;
  width: 50%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle {
  width: 300px;
  height: 300px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.hero-food img {
  position: absolute;
  top: -40%;
  width: 450px;
  height: 450px;
  z-index: 5;
}
.description {
  font-size: 20px;
  max-width: 400px;
  text-wrap: wrap;
}
.btn-div {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.btn {
  font-weight: 250;
  border: none;
  font-size: 22px;
  padding: 25px;
  width: 200px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.whitespace {
  width: 70px;
  height: 70px;
}
.btn:hover {
  transform: scale(1.1);
}
.order-btn {
  background-color: var(--primary-color);
  color: white;
}
.view-btn {
  background: none;
  border: 2px solid var(--primary-color);
}
.order-btn:hover {
  background: none;
  border: 2px solid var(--primary-color);
  color: black;
}
.view-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Menu Styles */
#menu {
  min-height: 100vh;
  width: 100%;
  padding: 5px;
  background-color: var(--secondary-color);
}
#menu h2 {
  font-size: 30px;
  text-align: center;
}
.header-tag {
  font-size: 20px;
  margin-top: 6%;
}
.menu-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}
.menu-header h2 {
  width: 100%;
}
.view-more-btn {
  font-weight: 300;
  border: none;
  font-size: 18px;
  padding: 17px;
  width: 170px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  color: white;
  background-color: var(--primary-color);
}
.menu-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 50px;
  min-height: 80vh;
  margin: 0 0 0 3%;
  margin-top: 3%;
  transition: all 0.3s ease;
}

.menu-item {
  height: 400px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  max-width: 28%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: var(--background-color);
  border-radius: 15px;
  cursor: pointer;
}
.menu-item .details {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
}
.food-name {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}
.food-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  width: 90%;
}
.food-img {
  width: 15rem;
  height: 15rem;
}
.price {
  font-size: 20px;
}
.hidden {
  display: none;
}
.menu-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 10vh;
}
.popular-tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px;
  border-radius: 10px;
  transform: rotate(-6deg);
}

/* Reviews Section */
#reviews {
  min-height: 90vh;
}
.section-header {
  font-size: 30px;
  text-align: center;
  margin: 10vh 0;
}
.review-header {
  font-size: 30px;
  text-align: center;
  margin: 10vh 0;
}
.review-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 0 20px;
  margin-bottom: 10vh;
}
.review-item {
  display: flex;
  flex-direction: column;
  width: 30%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 20px;
  padding: 0 10px;
}
.review-details .review-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  object-fit: cover;
}
.review-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: -10%;
  left: 10%;
}
.review-text {
  margin-top: 15vh;
  line-height: 1.5rem;
  font-style: italic;
  padding: 0 10px;
  margin-bottom: 20px;
}
.review-text::before {
  content: "“";
  font-size: 30px;
  color: var(--primary-color);
}
.review-text::after {
  content: "”";
  font-size: 30px;
  color: var(--primary-color);
}
.review-name {
  margin-left: 20px;
  font-size: 19px;
  font-weight: bold;
}

/* About Section */
#about {
  background-color: var(--secondary-color);
  min-height: 100vh;
}
.about-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 10vh;
}
.about-photo {
  margin: -5vh 0 10vh 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10vh;
  width: 60vh;
  height: 60vh;
  border-radius: 50%;
  /* box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15); */
}
.about-photo img {
  object-fit: cover;
  width: 420px;
  height: 420px;
  z-index: 2;
  margin-top: -10vh;
}
.about-photo .circle {
  position: absolute;
  z-index: 1;
  right: 10%;
  top: 35%;
  width: 70%;
  height: 70%;
}
.about-text {
  width: 500px;
  font-size: 24px;
  font-style: italic;
}
.about-icons {
  margin-top: 10vh;
  margin-bottom: 10vh;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.about-icon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}
.about-icon i {
  color: var(--primary-color);
  font-size: 30px;
}

/* Contact Section */
#contact {
  min-height: 100vh;
}
.contact-text {
  font-size: 20px;
  text-align: center;
  margin-top: -5vh;
}
.contact-container {
  margin: 10vh 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.contact-details {
  padding: 20px;
  gap: 30px;
}
.email-link {
  text-decoration: none;
  color: inherit;
  border-bottom: 3px dotted var(--primary-color);
}
.contact-detail {
  margin: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.contact-form {
  width: 50%;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 50vh;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  border-radius: 10px;
}
form input {
  border: none;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  border-radius: 10px;
  height: 3rem;
  width: 100%;
  outline: none;
  border: none;
  padding: 15px;
  margin: 10px 0;
  font-size: 16px;
  transition: 0.3s ease;
}
form input:focus {
  box-shadow: 0 0 0 1px var(--primary-color);
}
textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px;
  border: none;
  outline: none;
  resize: none;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

textarea:focus {
  box-shadow: 0 0 0 1px var(--primary-color);
}
.form-submit {
  color: white;
  background-color: var(--primary-color);
  cursor: pointer;
}
.footer {
  background-color: var(--secondary-color);
  min-height: 30vh;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer .text {
  font-size: 30px;
}
