/* ── WEDDINGS PAGE ──────────────────────────────────────────────── */

/* ── HERO SLIDER ── */
.wed-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.wed-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.wed-slide.active { opacity: 0.72; }
.wed-slider-dots {
  display: flex; gap: 10px; justify-content: center; margin-top: 28px;
}
.wed-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent; cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.wed-dot.active { background: #fff; }
.wed-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 100%);
}
.wed-hero-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.wed-hero-title {
  font-family: 'Quattrocento', serif;
  font-size: 90px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 8px;
  color: #fff; display: block; text-align: center;
  line-height: 1; margin: 0 0 36px;
}
.letter { overflow: hidden; display: inline-block; }
.letter span { display: inline-block; transform: translateY(110%); }
.wed-hero-explore {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 11px; letter-spacing: 4px;
  color: #fff; text-transform: uppercase; text-decoration: none;
  opacity: 0;
  cursor: pointer;
}

/* ── SECTION 2: full-bg image + sliding panel ── */
.wed-intro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.wed-intro-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background-image: url('/assets/wed-3.jpg');
  background-size: cover;
  background-position: center;
}
.wed-intro-panel {
  position: relative;
  z-index: 2;
  width: 45%; min-width: 360px;
  margin-left: auto;
  background: #fff;
  padding: 8vh 7%;
  display: flex; flex-direction: column; justify-content: center;
  transform: translateX(100%);
  opacity: 0;
}
.wed-gh-wrap {
  display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
}
.wed-gh-wrap h2 {
  font-family: 'Quattrocento', serif;
  font-size: 52px; font-weight: 400;
  color: #695E36; line-height: 1; flex-shrink: 0;
}
.wed-gh-line { flex: 1; height: 1px; background: #695E36; }
.wed-intro-panel p {
  font-family: 'Quattrocento', serif;
  font-size: 16px; line-height: 1.75; color: #423B25; margin-bottom: 14px;
}
.wed-ceremonies-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #695E36; border: 1px solid #695E36;
  padding: 15px 30px; text-decoration: none; width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.wed-ceremonies-btn:hover { background: #695E36; color: #fff; }

/* ── SECTION 3: video + civil ceremonies text ── */
.wed-civil {
  display: flex; height: 100vh; max-height: 100vh; overflow: hidden;
}
.wed-civil-media {
  width: 50%; position: relative; overflow: hidden; background: #000; flex-shrink: 0;
}
.wed-civil-media video,
.wed-civil-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.wed-civil-text {
  width: 50%; background: #fff; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vh 7%; overflow-y: auto;
  opacity: 0; transform: translateX(60px);
}
.wed-civil-text h3 {
  font-family: 'Quattrocento', serif;
  font-size: 44px; font-weight: 400; color: #4B4326;
  line-height: 1.1; margin-bottom: 28px;
}
.wed-civil-text p {
  font-family: 'Quattrocento', serif;
  font-size: 16px; line-height: 1.75; color: #423B25; margin-bottom: 14px;
}
.wed-gallery-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #695E36; border-bottom: 1px solid #695E36;
  padding-bottom: 4px; text-decoration: none; width: fit-content;
}

/* ── SECTION 4: full-width closing photo ── */
.wed-closing {
  min-height: 90vh;
  background-image: url('/assets/wed-1.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative;
}
.wed-closing-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
}

/* ── Gallery item hover cue ── */
.wed-gallery-item { position: relative; }
.wed-gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
  pointer-events: none;
}
.wed-gallery-item:hover::after { background: rgba(0,0,0,0.18); }

/* ── LIGHTBOX ── */
#wed-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
#wed-lightbox.open { opacity: 1; pointer-events: all; }
#lb-img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; display: block;
  border-radius: 4px;
  transition: opacity 0.15s ease;
  user-select: none;
}
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 34px; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10000; padding: 0;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10000; padding: 0;
  transition: background 0.2s;
}
#lb-close:hover { background: rgba(255,255,255,0.22); }
#lb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-family: 'Quattrocento', serif;
  font-size: 13px; letter-spacing: 0.1em; z-index: 10000;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wed-hero-title { font-size: 52px; letter-spacing: 4px; }
  .wed-intro-panel { width: 100%; margin: auto 0 0; transform: none; opacity: 0; min-width: unset; }
  .wed-civil { flex-direction: column; height: auto; max-height: none; overflow: hidden; }
  .wed-civil-media, .wed-civil-text { width: 100%; }
  .wed-civil-media { min-height: 55vw; max-height: 60vw; }
  .wed-civil-text { opacity: 1; transform: none; padding: 48px 6vw; }
}
@media (max-width: 600px) {
  .lb-nav { width: 40px; height: 40px; font-size: 26px; }
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }
}
