/* Highlights / Quick Links (legacy parity) */
.highlights-section {
  padding: 30px 0;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 20px;
}
.highlights-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--cider-brown);
  margin-bottom: 15px;
  font-weight: 600;
}
.highlights-text {
  color: var(--wood-ash);
  font-family: "EB Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.8;
}
.highlights-text strong {
  font-weight: 500;
  color: var(--cider-brown);
}

.nav-bar {
  display: none;
  position: relative;
  margin: 20px auto 60px;
  max-width: 800px;
}
.nav-links-container {
  border: 1px solid rgba(99, 46, 10, 0.08);
  border-radius: 50px;
  padding: 25px 30px;
  box-shadow: 0 2px 15px rgba(99, 46, 10, 0.05);
  background: rgba(255, 255, 255, 0.9);
}
.nav-links-desktop {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links-desktop a {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cinnamon-bark);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-links-desktop a:hover {
  color: var(--mulled-wine);
  text-decoration-color: var(--mulled-wine);
}

/* Mobile Hamburger Menu */
.nav-menu-mobile {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: block;
}

.hamburger {
  width: 35px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--cider-brown);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--soft-white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 80px 30px 30px;
}

.nav-overlay.active {
  right: 0;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  margin-bottom: 20px;
}

.nav-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--cider-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--cinnamon-bark);
}

@media (min-width: 769px) {
  .nav-menu-mobile {
    display: none;
  }
  .nav-bar {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-bar {
    display: none;
  }
  .highlights-section {
    display: none;
  }
}
