* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= HEADER ================= */

.main-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;

  padding: 8px 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);

  z-index: 1000;
  font-family: "Georgia", serif;
  letter-spacing: 1px;
}

/* MENU TEXT / X */
.nav-left {
  font-size: 16px;
  cursor: pointer;
  z-index: 1001;
}

/* LOGO */
.nav-logo img {
  height: 50px;
  opacity: 0.9;
}

/* BOOK NOW */
.book-btn {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* ================= MENU OVERLAY ================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fbf7ef;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* MENU CONTENT */
.menu-content {
  height: 100%;
  padding: 120px 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT LINKS */
.menu-links {
  list-style: none;
}

.menu-links li {
  margin-bottom: 24px;
}

.menu-links a {
  font-family: "Georgia", serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #7b8651;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #4a4a4a;
}

/* RIGHT IMAGE */
.menu-art img {
  max-height: 520px;
  opacity: 0.7;
}

/* MENU / CLOSE ANIMATION */

.nav-left {
  position: relative;
  width: 40px;
  height: 24px;
}

.menu-text {
  position: absolute;
  top: 0;
  left: 0;

  font-size: 18px;
  font-family: "Georgia", serif;

  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(6px);
}

/* MENU visible */
.menu-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* CLOSE icon */
.menu-text.close {
  font-size: 22px;
}


/* ================= MOBILE HEADER ONLY ================= */
@media (max-width: 768px) {

  /* ================= HEADER ================= */

  .main-nav {
    padding: 14px 18px;
    background: #fbf7ef;
  }

  /* HIDE DESKTOP MENU TEXT & CROSS */
  .menu-text {
    display: none;
  }

  /* ================= HAMBURGER ================= */

  .nav-left {
    width: 24px;
  }

  .hamburger {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger i {
    width: 100%;
    height: 2px;
    background: #7b8651;
    display: block;
  }

  /* ================= LOGO ================= */

  .nav-logo img {
    height: 42px;
  }

  /* ================= RIGHT SIDE (LOCATION) ================= */

  /* Hide BOOK NOW */
  .book-btn {
    display: none;
  }

  /* Show location icon image */
  .mobile-location {
    display: block;
  }

  .mobile-location img {
    height: 35px;
    width: auto;
    opacity: 0.9;
  }

  /* ================= MOBILE MENU ================= */

  .menu-content {
    padding: 100px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-links li {
    margin-bottom: 26px;
  }

  .menu-links a {
    font-size: 24px;
    letter-spacing: 2px;
  }

  /* Hide illustration on mobile */
  .menu-art {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-location {
    display: none;
  }
}
