/* ==========================================================================
   Wedding Venue Detail — Cinematic, romantic, editorial
   ========================================================================== */

/* Hero */
.wd-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.wd-hero__bg {
  position: absolute;
  inset: 0;
  animation: scaleIn 1.8s ease-out forwards;
}

.wd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

.wd-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 0;
  z-index: 10;
}

.wd-hero__badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, hsl(38,50%,55%));
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}

.wd-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  max-width: 700px;
}

.wd-hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
}

.wd-hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.wd-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.wd-hero-stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 500;
}

.wd-hero-stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Floating Petals */
.wd-hero__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.wd-petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(ellipse, hsla(350,60%,70%,0.5), hsla(350,60%,70%,0));
  border-radius: 50% 0 50% 0;
  animation: wdPetalFall linear infinite;
}

@keyframes wdPetalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Sticky Bar */
.wd-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--background, hsl(40,33%,98%));
  border-bottom: 1px solid var(--border, hsl(35,20%,88%));
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.wd-sticky-bar.is-visible {
  transform: translateY(0);
}

.wd-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.wd-sticky-bar__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--foreground);
}

.wd-sticky-bar__meta {
  font-size: 0.72rem;
  color: var(--muted-foreground);
  margin-left: 0.75rem;
}

.wd-sticky-bar__cta {
  padding: 0.55rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--background);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
}

.wd-sticky-bar__cta:hover {
  background: hsl(38,50%,45%);
}

/* Content */
.wd-content {
  padding: 5rem 0 3rem;
  background: var(--background);
}

/* Section Shared */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Narrative */
.wd-narrative {
  max-width: 700px;
  margin-bottom: 4rem;
}

.wd-narrative__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.wd-narrative__divider {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.wd-narrative__text {
  color: var(--muted-foreground);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* Stats Strip */
.wd-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background: var(--card, hsl(40,30%,96%));
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.wd-stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.wd-stat-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  display: block;
}

.wd-stat-item__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--foreground);
  display: block;
  margin-bottom: 0.15rem;
}

.wd-stat-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* Venue Spaces — Large cinematic cards */
.wd-spaces {
  margin-bottom: 5rem;
}

.wd-spaces__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.wd-spaces__grid {
  display: grid;
  gap: 1.5rem;
}

.wd-space-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wd-space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.wd-space-card:nth-child(even) {
  direction: rtl;
}

.wd-space-card:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .wd-space-card { grid-template-columns: 1fr; min-height: auto; }
  .wd-space-card:nth-child(even) { direction: ltr; }
}

.wd-space-card__image {
  position: relative;
  overflow: hidden;
}

.wd-space-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.6s ease;
}

.wd-space-card:hover .wd-space-card__image img {
  transform: scale(1.06);
}

.wd-space-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wd-space-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.wd-space-card__desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.wd-space-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wd-space-feature {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--muted-foreground);
}

/* Highlights */
.wd-highlights {
  margin-bottom: 5rem;
}

.wd-highlights__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.wd-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.wd-highlight-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.wd-highlight-card:hover {
  transform: translateY(-2px);
}

.wd-highlight-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.wd-highlight-card__text {
  font-size: 0.88rem;
  color: var(--foreground);
  line-height: 1.5;
}

/* Distances */
.wd-distances {
  margin-bottom: 5rem;
}

.wd-distances__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.wd-distances__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.wd-distance-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.wd-distance-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.wd-distance-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--foreground);
  display: block;
  margin-bottom: 0.2rem;
}

.wd-distance-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* Gallery */
.wd-gallery {
  margin-bottom: 5rem;
}

.wd-gallery__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.wd-gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .wd-gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

.wd-gallery-tile {
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
}

.wd-gallery-tile--wide { grid-column: span 2; }
.wd-gallery-tile--tall { grid-row: span 2; }

.wd-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wd-gallery-tile:hover img {
  transform: scale(1.06);
}

.wd-gallery-tile__zoom {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wd-gallery-tile:hover .wd-gallery-tile__zoom { opacity: 1; }

/* Reviews */
.wd-reviews {
  margin-bottom: 4rem;
}

.wd-reviews__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.wd-reviews__summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.wd-reviews-score {
  text-align: center;
}

.wd-reviews-score__value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--foreground);
  display: block;
  line-height: 1;
}

.wd-reviews-score__stars {
  color: var(--accent);
  font-size: 0.9rem;
  display: block;
  margin-top: 0.25rem;
}

.wd-reviews-score__count {
  font-size: 0.72rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  display: block;
}

.wd-reviews-sources {
  display: flex;
  gap: 1.5rem;
}

.wd-reviews-source {
  padding: 0.5rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.wd-reviews-source strong {
  color: var(--foreground);
  font-weight: 500;
}

.wd-reviews__list {
  display: grid;
  gap: 1rem;
}

.wd-review-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.wd-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.wd-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wd-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.wd-review-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--foreground);
}

.wd-review-card__date {
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

.wd-review-card__source {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.wd-review-card__source--internal {
  background: hsla(38,50%,55%,0.12);
  color: hsl(38,50%,45%);
}

.wd-review-card__source--google {
  background: hsla(210,80%,50%,0.1);
  color: hsl(210,80%,40%);
}

.wd-review-card__stars {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.wd-review-card__text {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Bottom Dock */
.wd-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}

.wd-bottom-dock__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.wd-bottom-dock__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--foreground);
  display: block;
}

.wd-bottom-dock__price {
  font-size: 0.82rem;
  color: var(--muted-foreground);
}

.wd-bottom-dock__actions {
  display: flex;
  gap: 0.5rem;
}

.dock-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dock-btn--primary {
  background: var(--accent);
  color: var(--background);
}

.dock-btn--primary:hover { background: hsl(38,50%,45%); }

.dock-btn--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.dock-btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 640px) {
  .wd-bottom-dock__info { display: none; }
  .dock-btn { padding: 0.6rem 1rem; font-size: 0.72rem; }
}

/* Lightbox (shared with hotel-detail) */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-top: 1rem;
}
