/* ======================================================
   venue.css — Crystal Ballroom per-venue landing pages
   Direction G: bright pearl + gold palette, no dark backgrounds
   ====================================================== */

/* ── Hero ── */
.venue-hero {
  position: relative;
  height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 84px; /* nav height */
}
.venue-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.72) 0%, rgba(26,26,46,0.12) 60%, transparent 100%);
}
.venue-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px 52px;
}
.venue-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.venue-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
.venue-hero h1 .venue-name-accent {
  color: var(--gold);
  font-style: italic;
}
.venue-hero-subhead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

/* ── Gallery ── */
.venue-gallery-section {
  background: var(--ivory);
  padding: 80px 64px;
}
.venue-gallery-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 40px;
}
.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.venue-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.venue-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.venue-gallery-item:hover img {
  transform: scale(1.04);
}

/* ── Details block ── */
.venue-details-section {
  background: var(--pearl);
  padding: 80px 64px;
}
.venue-details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
}
.venue-details-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.venue-detail-group {
  margin-bottom: 28px;
}
.venue-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.venue-detail-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}
.venue-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.venue-amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.venue-amenities-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Packages ── */
.venue-packages-section {
  background: #FEF0E5;
  padding: 80px 64px;
}
.venue-packages-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.venue-packages-intro {
  font-size: 17px;
  color: var(--charcoal-soft);
  margin-bottom: 48px;
  opacity: 0.8;
}
.venue-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
}
.venue-package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px 32px;
}
.venue-package-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.venue-package-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.venue-package-guests {
  font-size: 13px;
  color: var(--charcoal-soft);
  opacity: 0.7;
  margin-bottom: 24px;
}
.venue-package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.venue-package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.venue-package-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.venue-package-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.venue-package-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Tour booking form ── */
.venue-tour-section {
  background: var(--pearl);
  padding: 80px 64px;
}
.venue-tour-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  align-items: start;
}
.venue-tour-copy h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.venue-tour-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  opacity: 0.85;
}
.venue-tour-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
}
.venue-tour-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.venue-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.venue-form-group {
  margin-bottom: 16px;
}
.venue-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 6px;
  opacity: 0.8;
}
.venue-form-group input,
.venue-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--pearl);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.venue-form-group input:focus,
.venue-form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.venue-form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.venue-form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.venue-form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  color: var(--charcoal);
}
.venue-form-success .success-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.venue-form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.venue-form-success p {
  font-size: 15px;
  color: var(--charcoal-soft);
  opacity: 0.8;
}

/* ── Testimonials ── */
.venue-testimonials-section {
  background: var(--ivory);
  padding: 80px 64px;
}
.venue-testimonials-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.venue-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
}
.venue-testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.venue-testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.venue-testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.venue-testimonial-couple {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--charcoal-soft);
  opacity: 0.7;
}
.venue-testimonial-date {
  font-size: 12px;
  color: var(--charcoal-soft);
  opacity: 0.5;
  margin-top: 2px;
}

/* ── Google Reviews Rail ── */
.venue-reviews-section {
  background: var(--pearl);
  padding: 72px 64px;
  border-top: 1px solid var(--border);
}
.venue-reviews-inner {
  max-width: 1100px;
}
.venue-reviews-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.venue-reviews-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.venue-reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.venue-reviews-score {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.venue-reviews-stars {
  display: flex;
  gap: 2px;
}
.vr-star {
  font-size: 18px;
  color: var(--border);
}
.vr-star.vr-star-filled {
  color: var(--gold);
}
.venue-reviews-count {
  font-size: 13px;
  color: var(--charcoal-soft);
  opacity: 0.7;
}
.venue-reviews-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.venue-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.venue-review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,169,92,0.12);
  background: #FEF8EE;
}
.venue-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.venue-review-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.venue-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.venue-review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
}
.venue-review-time {
  font-size: 11px;
  color: var(--charcoal-soft);
  opacity: 0.55;
}
.venue-reviews-footer {
  margin-top: 28px;
}
.venue-reviews-gbp-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}
.venue-reviews-gbp-link:hover {
  color: var(--charcoal);
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .venue-reviews-rail { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .venue-reviews-section { padding: 56px 24px; }
  .venue-reviews-rail {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
  }
  .venue-reviews-rail::-webkit-scrollbar { display: none; }
  .venue-review-card { min-width: 270px; flex-shrink: 0; }
}

/* ── CTA Strip ── */
.venue-cta-section {
  background: var(--charcoal);
  padding: 72px 64px;
  text-align: center;
}
.venue-cta-ornament {
  margin-bottom: 28px;
}
.venue-cta-section h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}
.venue-cta-section p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}
.venue-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.venue-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Nav dropdown for Venues ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(26,26,46,0.12);
  min-width: 220px;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .venue-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .venue-packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .venue-packages-grid .venue-package-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .venue-details-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .venue-tour-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .venue-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .venue-testimonials-grid .venue-testimonial-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .venue-hero { height: 420px; }
  .venue-hero-content { padding: 0 24px 36px; }
  .venue-gallery-section,
  .venue-details-section,
  .venue-packages-section,
  .venue-tour-section,
  .venue-testimonials-section,
  .venue-cta-section { padding: 56px 24px; }
  .venue-gallery-grid { grid-template-columns: 1fr; }
  .venue-packages-grid { grid-template-columns: 1fr; }
  .venue-packages-grid .venue-package-card:last-child { grid-column: unset; max-width: none; }
  .venue-testimonials-grid { grid-template-columns: 1fr; }
  .venue-testimonials-grid .venue-testimonial-card:last-child { grid-column: unset; max-width: none; }
  .venue-form-row { grid-template-columns: 1fr; }
  body { font-size: 16px; line-height: 1.6; }
  .venue-hero-subhead { font-size: 18px; }
}
