/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sirin+Stencil&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --sim-brown: #a15b3c;
  --sim-cream: #f5eadb;
}

/* Common CSS */

/* Display */

.d_flex {
  display: flex;
}

.justify_content_center {
  justify-content: center;
}

.justify_content_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

/* Margin */

.mx_auto {
  margin: 0 auto;
}

/* Width */

.max-width-1280px {
  max-width: 1280px;
}

/* Font Size */

.fs-40px {
  font-size: 40px;
}

.fs-30px {
  font-size: 30px;
}

.fs-24px {
  font-size: 24px;
}

.fs-18px {
  font-size: 18px;
}

/* Font Family */

.inter {
  font-family: "Inter", sans-serif;
}

.sirin_stencil {
  font-family: "Sirin Stencil", sans-serif;
}

.cursive {
  font-family: "Edu NSW ACT Cursive", cursive;
}

/* Headings */

.h2-heading {
  text-align: center;
  font-weight: 500;
  color: var(--sim-brown);
}

/* Cards */

.cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  gap: 15px;
  background-color: white;
  box-shadow: 10px 10px 10px #00000017;
  transition: all 0.3s ease;
  color: var(--sim-brown);
}

.card img {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card .rating b {
  margin-right: 8px;
}

.card span {
  font-weight: 600;
}

.card:hover {
  background-color: var(--sim-brown);
  color: var(--sim-cream);
}

.card:hover img {
  transform: scale(1.04);
}

@media screen and (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .card h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .card p {
    font-size: 16px;
  }

  .card span {
    font-weight: 400;
  }
}

/* Header Section */

header {
  background-color: var(--sim-cream);
  color: var(--sim-brown);
  padding: 20px;
}

.navbar_menu {
  gap: 30px;
}

.navbar_menu li {
  list-style: none;
  padding: 5px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.navbar_menu li a {
  text-decoration: none;
  color: var(--sim-brown);
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  font-size: 22px;
}

.navbar_menu li:hover {
  background-color: var(--sim-brown);
}

.navbar_menu li:hover a {
  color: var(--sim-cream);
}

.navbar_toggle {
  display: none;
  background-color: var(--sim-brown);
  padding: 6px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.navbar_toggle .bar {
  background-color: var(--sim-cream);
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .logo {
    z-index: 99;
  }

  .navbar_menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 10px;
    position: fixed;
    width: 250px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 6rem 1rem 0;
    background-color: var(--sim-cream);
    transition: right 0.4s ease-in-out;
    z-index: 11;
  }

  .navbar_menu.active {
    right: 0px;
  }

  .navbar_toggle {
    display: block;
    z-index: 999;
    position: fixed;
    right: 20px;
  }

  .navbar_toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar_toggle.active .bar:nth-child(1) {
    transform: translatey(8px) rotate(45deg);
  }

  .navbar_toggle.active .bar:nth-child(3) {
    transform: translatey(-8px) rotate(-45deg);
  }

  .navbar_menu li {
    width: 100%;
  }

  .navbar_menu li a {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding: 10px;
  }

  .logo {
    font-size: 30px;
  }

  .navbar_menu {
    width: 100%;
    padding: 5rem 1rem 0;
  }
}

/* Hero Section */

.hero-sec {
  position: relative;
}

.hero-sec video {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: bottom;
}

.hero-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.676);
  text-align: center;
}

.hero-heading {
  font-size: 52px;
  font-weight: 500;
}

@media screen and (max-width: 700px) {
  .hero-heading {
    font-size: 40px;
  }
}

@media screen and (max-width: 576px) {
  .hero-heading {
    font-size: 25px;
  }

  .hero-para {
    font-size: 12px;
  }
}

/* Appetizers Section */

.appetizers-sec {
  background-color: var(--sim-cream);
  padding: 80px 20px 0;
  margin: -4px auto 0;
}

@media screen and (max-width: 576px) {
  .appetizers-sec {
    padding: 40px 10px 0;
  }
}

/* Entrees Section */

.entrees-sec {
  background-color: var(--sim-cream);
  padding: 80px 20px 0px;
}

@media screen and (max-width: 576px) {
  .entrees-sec {
    padding: 40px 10px 0px;
  }
}

/* Desserts Section */

.desserts-sec {
  background-color: var(--sim-cream);
  padding: 80px 20px 0px;
}

@media screen and (max-width: 576px) {
  .desserts-sec {
    padding: 40px 10px 0px;
  }
}

/* Drinks Section */

.drinks-sec {
  background-color: var(--sim-cream);
  padding: 80px 20px;
}

@media screen and (max-width: 576px) {
  .drinks-sec {
    padding: 40px 10px;
  }
}

/* Footer Section */

.footer-sec {
  padding: 30px 20px;
  background-color: var(--sim-brown);
  color: var(--sim-cream);
  text-align: center;
}

@media screen and (max-width: 576px) {
  .footer-sec {
    padding: 20px 10px;
  }

  .footer-main-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* Bottom to Top btn */

.btt_btn {
  background-color: var(--sim-brown);
  width: 40px;
  height: 40px;
  border: 2px solid;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseShadow 2s infinite;
}

.btt_btn a {
  height: 100%;
  width: 100%;
  color: white;
  text-decoration: none;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
