body {
  height: 100vh;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  min-height: 700px;
}
h1 {
  font-size: 100px;
  font-family: "Big Shoulders", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(112, 109, 109);
  padding: 10px;
}

/* Hamburger Menu Styles */
.hamberger-menu:hover {
  transform: scale(1.1);
}

.hamburger-lines {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.hamberger-menu.active .line1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamberger-menu.active .line2 {
  opacity: 0;
  transform: scaleX(0);
}

.hamberger-menu.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced overlay z-index to ensure it's above everything */
.overlay {
  z-index: 99999 !important;
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  body {
    height: 150vh;
  }
  h1 {
    font-size: 70px;
    text-align: center;
  }
}
