/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(44, 37, 32, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.35s ease;
}

.lightbox-overlay.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(232, 224, 212, 0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s ease;
  font-family: var(--font-sans, sans-serif);
}

.lightbox-close:hover {
  color: #fff;
}

/* =============================================
   MOBILE MENU
   ============================================= */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 251, 248, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

#mobile-menu ul {
  list-style: none;
  text-align: center;
}

#mobile-menu ul li {
  margin-bottom: 2rem;
}

#mobile-menu ul li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

#mobile-menu ul li a:hover {
  color: var(--color-taupe);
}

/* Hamburger animation */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
