* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  z-index: 1000;
  transition: opacity 0.4s ease;
}

.nav-item {
  cursor: pointer;
}

.pages {
  display: flex;
  width: 600%;
  align-items: flex-start;
  transform-origin: 0 0;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}

.page {
  width: 100vw;
  
  min-height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: flex-start;
  padding-top: 130px;
  padding-bottom: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

/* VENUE */
.venue-wrapper {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.subtext {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 10px;
  display: block;
}

.venue-info {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  margin-top: 25px;
  color: rgba(0,0,0,0.75);
}

.section-line {
  width: 75%;
  height: 1px;
  margin: 40px auto;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.25), transparent);
}

/* MAP */
.map-container iframe {
  width: 80vw;
  max-width: 900px;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* GALLERY */
.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.gallery {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 80vw;
  height: 100px;
  gap: 10px;
}

.gallery img {
  height: 70px;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-arrow {
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  cursor: pointer;
}

.lightbox-arrow.left { left: 30px; }
.lightbox-arrow.right { right: 30px; }

.travel-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin: 10px 0 20px;
  color: rgba(0,0,0,0.82);
}
 
.flight-group {
  width: 100%;
  margin-bottom: 10px;
}
 
.flight-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
.flight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.015);
}
 
.flight-card.wide {
  max-width: 600px;
  margin: 0 auto 12px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 14px;
}
 
.airport {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.85);
}
 
.flight-arrow {
  font-size: 22px;
  color: rgba(0,0,0,0.3);
}
 
.flight-detail {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(0,0,0,0.55);
}
 
.flight-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
 
/* ---- BUTTONS ---- */
.flight-btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  padding: 7px 18px;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(0,0,0,0.82);
  color: white;
  transition: background 0.2s ease;
}
 
.flight-btn:hover {
  background: rgba(0,0,0,1);
}
 
.flight-btn.secondary {
  background: transparent;
  color: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,0,0,0.2);
}
 
.flight-btn.secondary:hover {
  background: rgba(0,0,0,0.05);
}
 
/* ---- HOTEL TIER LABEL ---- */
.hotel-tier-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}
 
/* ---- HOTEL CARD ---- */
.hotel-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  margin-bottom: 10px;
  width: 100%;
  max-width: 750px;
}
 
.hotel-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.hotel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
 
.hotel-img-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: rgba(0,0,0,0.25);
  z-index: 1;
}
 
.hotel-info {
  flex: 1;
}
 
.hotel-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: rgba(0,0,0,0.85);
  margin-bottom: 3px;
}
 
.hotel-location {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  margin-bottom: 6px;
}
 
.hotel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  margin-bottom: 10px;
}
 
@media (max-width: 600px) {
  .hotel-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
 
  .flight-card {
    padding: 14px;
  }
 
  .airport {
    font-size: 22px;
  }
}
 
.home-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
 
.home-date-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  margin-bottom: 28px;
}
 
.home-names {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  color: rgba(0,0,0,0.88);
  margin: 0;
  letter-spacing: -0.01em;
}
 
.home-ampersand {
  font-size: 0.65em;
  color: rgba(0,0,0,0.3);
  display: inline-block;
  margin: 6px 0;
}
 
.home-location {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: rgba(0,0,0,0.45);
  margin-top: 18px;
  letter-spacing: 0.06em;
}
 
.home-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
  max-width: 520px;
  margin: 0;
}

.countdown-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 16px;
}
 
.countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
 
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
 
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 500;
  color: rgba(0,0,0,0.85);
  line-height: 1;
}
 
.countdown-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-top: 4px;
}
 
.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: rgba(0,0,0,0.15);
  line-height: 1;
  margin-top: 4px;
}

.home-nav-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
 
.home-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
}
 
.home-nav-link:hover {
  color: rgba(0,0,0,0.85);
}
 
.home-nav-dot {
  color: rgba(0,0,0,0.18);
  font-size: 18px;
}

.itinerary-info {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  margin-top: 25px;
  color: rgba(0,0,0,0.75);
}

/* VENUE TITLE (used on Venue, Location, Travel, Pictures pages) */
.venue-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(0,0,0,0.88);
}
 
/* ITINERARY TIMELINE */
.itinerary-timeline {
  max-width: 700px;
  text-align: left;
  margin-top: 30px;
}
 
.itinerary-section {
  margin-bottom: 35px;
}
 
.itinerary-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: rgba(0,0,0,0.82);
  margin-bottom: 18px;
  text-align: center;
}
 
.itinerary-time-block {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}
 
.itinerary-time {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(0,0,0,0.85);
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
}
 
.itinerary-content {
  flex: 1;
}
 
.itinerary-event {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  margin-bottom: 4px;
}
 
.itinerary-detail {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
}
 
@media (max-width: 600px) {
  .itinerary-time-block {
    flex-direction: column;
    gap: 6px;
  }
  
  .itinerary-time {
    text-align: left;
    min-width: auto;
  }
}
 
/* PICTURE GRID (for Pictures page) */
.picture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  width: 90vw;
  max-width: 1000px;
  margin-top: 30px;
}

.picture-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.picture-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-loading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(0,0,0,0.4);
  margin-top: 30px;
}

@media (max-width: 600px) {
  .picture-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }
}