/* ============================================================
   THE PRESTIGE VENUE — Main Stylesheet
   Colors: Deep Purple #3D1C6E | Gold #C9A84C | Black #0A0A0A
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --purple:       #3D1C6E;
  --purple-dark:  #2A1250;
  --purple-mid:   #5A2D9C;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #A07830;
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-mid:     #1E1E1E;
  --white:        #FFFFFF;
  --off-white:    #FAF8FF;
  --grey-light:   #F2F0F8;
  --grey:         #CCCCCC;
  --text:         #222222;
  --text-mid:     #555555;
  --text-light:   #888888;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --nav-height:   80px;
  --max-width:    1200px;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.20);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--purple { background: var(--purple); color: var(--white); }
.section--grey { background: var(--grey-light); }
.section--gold-accent { background: var(--gold); color: var(--dark); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 32px;
  border-radius: 2px;
}
.divider-gold--left { margin-left: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: inherit; margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-label--dark { color: var(--gold-dark); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-purple:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,28,110,0.3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--gold); }

.nav__cta { margin-left: 8px; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8) !important;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold) !important; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 16px; width: 100%; text-align: center; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1250 0%, #3D1C6E 55%, #1A0A30 100%);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 48px 24px;
}
.hero__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 24px;
  opacity: 0.95;
}
.hero__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page Hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1250 0%, #3D1C6E 100%);
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 { color: var(--white); }
.page-hero .hero__label { margin-bottom: 12px; }

/* ============================================================
   VENUE CARDS (Homepage)
   ============================================================ */
.venue-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
}
.venue-card:hover { transform: translateY(-6px); }
.venue-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1250, #3D1C6E);
}
.venue-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.4s;
}
.venue-card:hover .venue-card__bg img {
  opacity: 0.45;
  transform: scale(1.04);
}
.venue-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 60%);
}
.venue-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.venue-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.venue-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.venue-card__meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.venue-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.amenity-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  background: rgba(61,28,110,0.05);
  transition: all 0.25s;
}
.amenity-item:hover {
  border-color: var(--gold);
  background: rgba(61,28,110,0.1);
  transform: translateY(-4px);
}
.amenity-item__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.amenity-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 6px;
}
.amenity-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 3px solid var(--gold);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-card__event {
  color: var(--gold);
  font-size: 0.78rem;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-grid--2col { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--purple-dark);
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,28,110,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: var(--gold);
  font-size: 2rem;
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card__header {
  background: var(--purple);
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
}
.pricing-card--featured .pricing-card__header { background: var(--purple-dark); }
.pricing-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.pricing-card__name {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.pricing-card__price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 10px;
  color: var(--gold);
}
.pricing-card__price-note {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 6px;
}
.pricing-card__body {
  padding: 28px;
  background: var(--white);
}
.pricing-card__features {
  margin-bottom: 28px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.92rem;
  color: var(--text);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(61,28,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--purple);
  cursor: pointer;
}

/* Contact form box */
.contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
.contact-box__info {
  background: var(--purple-dark);
  padding: 48px 36px;
  color: var(--white);
}
.contact-box__form { padding: 48px 36px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--grey);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--grey); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: var(--purple); }
.faq-question.open { color: var(--purple); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s, border-color 0.2s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); border-color: var(--purple); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer__inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--purple);
  position: relative;
}
.about-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  text-align: center;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--purple);
  font-family: var(--font-heading);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PHOTO PLACEHOLDER
   ============================================================ */
.photo-placeholder {
  background: linear-gradient(135deg, #2A1250 0%, #3D1C6E 60%, #C9A84C22 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  gap: 8px;
  padding: 24px;
  width: 100%;
  height: 100%;
}
.photo-placeholder__icon { font-size: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand .nav__logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--gold); }

/* Gold divider line in footer */
.footer__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip {
  background: var(--gold);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.info-strip a { color: var(--purple-dark); text-decoration: underline; }

/* Venue Detail Page specific */
.venue-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.venue-sidebar {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(61,28,110,0.1);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.venue-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
}
.venue-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-mid);
}
.venue-sidebar ul li:last-child { border-bottom: none; }
.venue-sidebar ul li strong { color: var(--text); min-width: 90px; flex-shrink: 0; }
.venue-mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}
.venue-mini-gallery div {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--purple);
}
.venue-mini-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   SVG ICONS — Professional line icons in brand gold
   ============================================================ */
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Large event-type icons on homepage grid */
.event-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.25);
}
.event-icon .icon-svg { width: 24px; height: 24px; }

/* Amenity icon circles — replaces old amenity-item__icon emoji */
.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(61,28,110,0.06);
  border: 1.5px solid rgba(61,28,110,0.15);
}
.amenity-icon .icon-svg { width: 22px; height: 22px; stroke: var(--purple); }

/* Value icons (about page) */
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.25);
}
.value-icon .icon-svg { width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .venue-detail-grid { grid-template-columns: 1fr; }
  .venue-sidebar { position: static; }
  .contact-box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .venue-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item--tall { grid-row: span 1; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split__image { aspect-ratio: 16/9; }
  .stat-row { flex-wrap: wrap; gap: 24px; }
  .pricing-card--featured { transform: scale(1); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-box__info { padding: 36px 24px; }
  .contact-box__form { padding: 36px 24px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .checkbox-group { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
