* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

:root {
  --hero-gap: 60px;
  overscroll-behavior: none;
}

/* NAVBAR STYLES */
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.open {
    overflow: hidden;
  }

  #navigation {
    width: 100%;
    background: black;
    padding: 0.75rem 1rem;
    position: fixed;
    z-index: 10000;
  }

  #navigation:before {
    content: '';
    width: 100%;
    height: 0vh;
    background: #00000099;
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  #navigation.active:before {
    height: 150vh;
    opacity: 1;
  }

  #navigation.active .ul-wrapper {
    visibility: visible;
    opacity: 1;
  }

  #navigation.active .li {
    opacity: 1;
    transform: translateY(0);
  }

  #navigation .container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #navigation .logo {
    width: 200px;
    height: 140px;
    position: absolute;
    z-index: 10;
    left: -3rem;
  }

  #navigation .toggle {
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #navigation .active .line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #navigation .active .line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }

  #navigation .active .line3 {
    opacity: 0;
    bottom: 100%;
  }

  #navigation .box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
    cursor: pointer;
  }

  #navigation .line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #navigation .line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }

  #navigation .line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }

  #navigation .line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #navigation .ul-wrapper,
  #navigation .socials-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
    color: white;
  }

  #navigation .ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
  }

  #navigation .li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #navigation .li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: white;
    display: inline-block;
    position: relative;
  }

  #navigation .li-link:before {
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }



  #navigation .li-link.active:before {
    display: block;
  }

  #navigation .li-link.active-scroll {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ba82b;
    border-bottom: 2px solid green;
  }

  #navigation .button-solid {
    display: none;
  }
}

/* DESKTOP - 1024PX */
@media only screen and (min-width: 64rem) {
  #navigation {
    width: 100%;
    padding: 0 1rem;
    position: absolute;
    z-index: 10000;
  }

  #navigation .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  #navigation .socials-wrapper {
    position: absolute;
    display: flex;
    gap: 1rem;
    right: 3rem;
    object-fit: contain;
  }

  #navigation .socials-wrapper i {
    color: rgb(255, 255, 255);
  }

  #navigation .socials-wrapper i:hover {
    color: rgb(43, 168, 43);
    transition: 0.3s;
  }

  #navigation .toggle {
    display: none;
  }

  #navigation .logo {
    width: 200px;
    height: 140px;
    padding: 0;
    position: absolute;
    z-index: 100;
    left: -2rem;
  }

  #navigation .logo img {
    object-fit: contain;
  }

  #navigation .ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: start;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #navigation .li {
    list-style: none;
    padding: 2rem 0;
    flex: none;
  }

  #navigation .li-link {
    font-size: 1.1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: white;
    display: block;
    position: relative;
  }

  #navigation .li-link:hover {
    color: #2ba82b;
    transition: 0.3s;
  }

  #navigation .li-link:hover:before {
    width: 100%;
  }

  #navigation .li-link.active:before {
    width: 100%;
  }

  #navigation .li-link:before {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }

  #navigation .button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  #navigation .button-solid:before {
    content: '';
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #navigation .button-solid:hover:before {
    width: 100%;
  }
}

#navigation .li-link {
  transition: color 0.2s ease-in-out;
}

#navigation .li-link:hover {
  color: #2ba82b;
  transition: 0.2s ease-in-out;
}

h1 {
  font-size: calc(1.04rem + 8vmin);
  padding-bottom: 0.1em;
  font-style: italic;
  color: #ffffff;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-img {
  background-image: url(./images/hero-image.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-block-size: 80vh;
  place-content: center;
  text-align: center;
  overflow: hidden;
}



.overlay {
  border-image: linear-gradient(to bottom, #000000f5, #52000074, #01250192) 1
    fill;
}

.hero-title {
  color: white;
  padding: 5em;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  transform-origin: 0 100%;
  transform: translateZ(8px);
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    hsl(0, 0%, 0%) 0%,
    hsla(0, 0%, 0%, 0) 100%
  );
  z-index: 2;
}

.hero-subheading {
  font-size: 0.95rem;
  font-weight: normal;
}

/* hero Arrow */

.arrow-hero {
  position: relative;
  padding: 2rem;
}

.scroll-icon-container {
  --size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  top: calc(var(--size) * -1);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(var(--size) * 2);
  height: calc(var(--size) * 2);
  border-radius: 0.15rem;
  background-color: inherit;
  box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.1);
  z-index: 4;
}

.scroll-icon-container .icon--down-arrow {
  width: var(--size);
  height: var(--size);
}

.scroll-icon-container {
  animation: bounce 1.5s infinite ease-in-out;
  cursor: pointer;
  background-color: white;
  border: 2px solid black;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

body.resize-animation-stopper #navigation .li {
  transition: transform 0s ease, opacity 0s ease;
}

body.resize-animation-stopper #navigation .li-link {
  transition: color 0s ease;
}


/* TABLET SCREEN  */

@media (min-width: 600px) {
  .hero-subheading {
    font-size: 1.2rem;
  }

}
  



/* ABOUT SECTION */

.about-container {
  margin: 1.5em;
  display: flex;
  flex-direction: column;
  padding-top: 3em;
  padding-bottom: 2em;
}

.paragraph-wrapper p {
  margin-bottom: 1em;
  line-height: 2;
}

h2 {
  padding-bottom: 1em;
  font-size: 3rem;
  font-style: italic;
  text-align: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.image-wrapper .img-2 {
  object-position: bottom;
}

/* TABLET SIZE */

@media (min-width: 600px) {
  .image-wrapper {
    display: flex;
    gap: 0.5em;
  }

  .paragraph-wrapper p {
    margin: 2em;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .img-1 {
    max-width: 60%;
  }

  .img-2 {
    max-width: 40%;
    object-position: bottom;
  }
}

/* LAPTOPS SIZE */

@media (min-width: 900px) {
  .about-container {
    max-width: 90%;
    margin: 0 auto;
  }

  .paragraph-wrapper p {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}

/* DESKTOPS SIZE */
@media (min-width: 1200px) {
  .about-container {
    max-width: 75%;
  }
  .paragraph-wrapper p {
    max-width: 70%;
  }
}

/* MENU */

.menu-container {
  padding-bottom: 2em;
}



.menu-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #407154;
  margin-bottom: 0.5rem;
}

.menu-subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.menu-divider {
  border: none;
  border-top: 5px dotted #1a5600;
  margin: 1rem auto;
  width: 80%;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 63.9375rem) {
  .tabs {
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .tab {
    flex: 0 0 calc(50% - 0.5rem);
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.tab {
  padding: 0.5rem 1rem;
  background: #f1f1f1;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.tab.active {
  background: #333;
  color: white;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  text-align: left;
  justify-content: center;
}

.menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1em 2em;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.menu-item-price {
  font-weight: bold;
  font-size: 1.2rem;
}

.menu-item-desc {
  font-size: 1rem;
  color: #555;
}

.menu-section-header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 0 2em;
}

.menu-section-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
}

.menu-note {
  padding: 0.5em 2em;
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
}

.menu-availability {
  font-size: 1.1rem;
  font-style: normal;
  color: #333;
}

.menu-footer-note {
  margin-top: 3rem;
  padding: 1.5em 2em;
  text-align: center;
  border-top: 2px solid #ddd;
}

.menu-footer-note p {
  margin: 0.5rem 0;
}

.menu-footer-note p:first-child {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.menu-footer-note p:last-child {
  font-size: 0.9rem;
  color: #666;
}

/* TABLET SIZE */

@media (min-width: 1024px) {
  .menu-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  hr {
    max-width: 65%;
  }

  .menu-item {
    flex: 0 0 calc(50% - 1rem); /* 2 columns with gap */
  }

  .menu-item-title {
    max-width: 80%;
  }

  .menu-section-header,
  .menu-note {
    flex: 0 0 100%; /* Full width */
  }
}

/* LAPTOPS SIZE */

@media (min-width: 900px) {
  .menu-container {
    max-width: 90%;
    margin: 0 auto;
  }

  hr {
    max-width: 55%;
  }
}

/* DESKTOPS SIZE */
@media (min-width: 1200px) {
  .menu-container {
    max-width: 80%;
  }

  hr {
    max-width: 45%;
  }
}

/* GALLERY */

.gallery-container {
  margin: 1.5em;
  padding-bottom: 2em;
}

.gallery-container > .gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  justify-content: center;
}

.gallery-container img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  background-position: center;
}

/* TABLET SIZE */
@media (min-width: 600px) {
  .gallery-container {
    max-width: 90%;
    margin: 0 auto;
  }
  .gallery-container img {
    max-width: 45%; /* Two images side by side */
  }
}

/* LAPTOPS SIZE */
@media (min-width: 900px) {
  .gallery-container img {
    max-width: 30%; /* Three images per row */
  }
}

/* DESKTOPS SIZE */
@media (min-width: 1200px) {
  .gallery-container {
    max-width: 85%;
  }

  .gallery-container img {
    max-height: 400px;
  }
}

/* LOCATION */
.location-container {
  padding: 2em;
  text-align: center;
  padding-bottom: 5rem;
}

.location-map {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 2em;
  width: 75%;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
}

.location-info p {
  padding: 0.8em;
}

.main-primary-text {
  font-weight: bold;
}

.location-info a {
  color: #000;
  text-decoration: none;
}

.email-link {
  font-weight: bold;
}

.email-link:visited,
.email-link:link,
.email-link:active {
  color: #407154;
}

.email-link:hover {
  color: #015b25;
}

.toggle-map-btn {
  margin-top: 1rem;
  padding: 0.5em 1.3em;
  border: 2px solid black;
  cursor: pointer;
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  transition: all 0.3s ease-in;
}

.toggle-map-btn:hover {
  background-color: #333;
  color: white;
}

.hidden {
  display: none;
}

/* TABLET SIZE */
@media (min-width: 600px) {
  .location-container {
    max-width: 95;
    margin: 0 auto;
  }

  .location-info {
    max-width: 55%;
    font-size: 1rem;
  }
}

/* LAPTOPS SIZE */
@media (min-width: 900px) {
  .location-container {
    max-width: 80%;
  }

  .location-info {
    max-width: 60%;
    padding: 2.5em;
  }

  .toggle-map-btn {
    font-size: 1rem;
  }
}

/* DESKTOPS SIZE */
@media (min-width: 1200px) {
  .location-container {
    max-width: 85%;
  }

  .location-info {
    max-width: 55%;
    padding: 2.5em;
  }
}

/* FOOTER */

.footer {
  background-color: #000000;
  color: #fff;
  padding: 1.5em;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer-hours p {
  margin: 1em;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  padding: 0;
}

.footer-socials a {
  color: white;
  transition: color 0.3s ease;
}

.footer-socials i:hover {
  color: rgb(43, 168, 43);
  transition: 0.3s;
}

/* TABLET SIZE */
@media (min-width: 600px) {
}

/* LAPTOPS SIZE */
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
  }

  .footer-logo {
    width: 200px;
    height: 140px;
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-hours p {
    margin: 0;
  }

  .footer-socials {
    position: absolute;
    display: flex;
    gap: 1rem;
    right: 3rem;
    object-fit: contain;
  }
}

/* DESKTOPS SIZE */
@media (min-width: 1200px) {
  .footer-content {
    margin: 0 auto;
  }
}


