@font-face {
  font-family: "Snell";
  src: url("/assets/SnellRoundhand.ttc");
}

* {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: "Playfair Display", serif;
  background: #000;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;

  font-weight: 700;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  padding: 2rem;
  text-decoration: underline;

  color: #e4cbb2;
}

.logo {
  padding: 2rem 4rem;
}
.logo img {
  width: 160px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto;
}

.main {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  margin: 0 auto;
}

.main-text {
  font-size: 2rem;
  margin: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.static-container {
  position: sticky;
  top: 0;
  z-index: -4;

  opacity: 0.25;
  filter: blur(3px);
}
.static {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  z-index: -5;
}
.description {
  font-size: 1rem;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: rgb(213, 213, 213);
  margin-top: 1.5rem;
}
.sidecar {
  margin: 5rem;
}

/* .sidecar h2 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
} */

.event {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #222222;
  font-weight: 300;
}
.event h3 {
  font-weight: 300;
  color: #e4cbb2;
  text-decoration: underline;
}
.event aside {
  margin-top: 0.5rem;
  color: rgb(173, 173, 173);
}

.menus {
  margin-top: 5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222222;
}


.menu-link {
  display: block;
  font-size: 1.5rem;
  padding: 1rem 0;
  color: #e4cbb2;
  text-decoration: underline;
}

.menu-header {
  margin: 2rem 4rem;
}
.menu-header {
  font-size: 2.5rem;
}
.menu-subheader {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}
.menu-section-subtitle {
  color: rgb(176, 176, 176);
}
.menu-section-subheading {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-column {
  margin: 2rem 4rem;
}
.menu-section-heading {
  font-size: 2rem;
}

.menu-flex {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.menu-flex .menu-item {
  min-width: 30%;
}

.menu-flex-2 {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.menu-flex-2 .menu-item {
  min-width: 40%;
}

.menu-flex-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.menu-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu-section-heading,
.menu-section-subheading {
  font-weight: 400;
}

/* Only hide prices inside .hide-prices sections */
.hide-prices .menu-item-price {
  display: none;
}

.menu-item-price {
  display: none;
}

.show-prices .menu-item-price {
  display: block;
}

.menu-item-title {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.menu-item-description {
  color: rgb(213, 213, 213);
}

.spacer {
  margin-top: 4rem;
}

.about {
  margin: 0 auto;
  max-width: 1280px;
}
.about-title {
  font-size: 4rem;
}
.about-description {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}
.staff-heading {
  margin: 2rem 0;
  border-bottom: 1px solid rgb(73, 73, 73);
  padding-bottom: 2rem;
  font-size: 2rem;
}
.staff-card {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.staff-image {
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.staff-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 6rem;
}
.staff-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.insta {
  width: 1.25rem;
  height: 1.25rem;
}
.insta-container {
  border: 1px solid gray;
  padding: 0.5rem;
  gap: 0.5rem;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  border-radius: 120px;
}

@media (max-width: 1920px) {
  .main {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .logo {
    padding: 1.5rem;
  }
  .main {
    grid-template-columns: 1fr;
  }
  .main-text {
    margin: 2rem;
  }
  .sidecar {
    margin: 2rem;
  }
}

@media (max-width: 640px) {
  .menu {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .main-text {
    font-size: 1.5rem;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    margin: 1.5rem;
  }
  .staff {
    margin: 1.5rem;
  }
  .staff-card {
    flex-direction: column;
    gap: 0;
  }
  .staff-image {
    max-width: initial;
    margin: 2rem 0 1rem 0;
  }
  .staff-content {
    width: 100%;
  }
  .staff-content aside {
    margin-bottom: 1rem;
  }

  .menu-flex-2 .menu-item,
  .menu-flex .menu-item {
    min-width: 60%;
  }
  .menu-header,
  .menu-column {
    margin: 1.5rem;
  }
  .menu-header {
    font-size: 1.5rem;
  }
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  padding: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;

  top: 20px;
  right: 20px;
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger-inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-inner::before {
  content: "";
  top: -8px;
  left: 0;
}

.hamburger-inner::after {
  content: "";
  bottom: -8px;
  left: 0;
}

/* Active state */
.hamburger.is-active .hamburger-inner {
  background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .menu a {
    font-size: 24px;
    padding: 15px 25px;
    margin: 10px 0;
    display: block;
    width: 200px;
    text-align: center;
    color: white;
    text-decoration: none;
  }

  /* Hamburger button styles */
  .hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
  }

  .hamburger-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hamburger-inner::before {
    content: "";
    top: -8px;
    left: 0;
  }

  .hamburger-inner::after {
    content: "";
    bottom: -8px;
    left: 0;
  }

  /* Active hamburger state */
  .hamburger.is-active .hamburger-inner {
    background-color: transparent;
  }

  .hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
  }

  .hamburger.is-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/* Desktop menu styles */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .menu {
    display: flex;
    gap: 20px;
  }
}
