/* ===== PARQ EVENT CENTER — SHARED STYLES ===== */
:root {
  --purple: #6b2fa0;
  --purple-dark: #4a1a70;
  --white: #ffffff;
  --gold: #c9a84c;
  --black: #0a0a0a;
  --dark: #111;
  --gray: #888;
  --offwhite: #f5f0ea;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; font-weight: 300; color: #333; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: transparent; transition: background .35s;
}
#nav.scrolled { background: rgba(5,5,5,.93); }
.nav-logo img { height: 54px; display: block; }
.nav-links { display: flex; list-style: none; align-items: stretch; height: 72px; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a, .nav-links > li > span {
  display: flex; align-items: center;
  padding: 0 16px; height: 72px;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.9); font-weight: 500; cursor: pointer;
  white-space: nowrap; transition: color .2s;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover { color: var(--white); }
.nav-links > li > a.active { border-bottom: 2px solid var(--white); }
.nav-caret { margin-left: 5px; font-size: .5rem; opacity: .7; }

/* Dropdowns */
.nav-dropdown {
  display: none; position: absolute; top: 72px; left: 0;
  background: rgba(10,10,10,.97); min-width: 210px;
  border-top: 2px solid var(--purple);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 13px 20px;
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 500;
  transition: background .2s, color .2s;
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover {
  background: rgba(107,47,160,.25);
  color: var(--white);
  border-left-color: var(--purple);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 300;
  letter-spacing: .25em; text-transform: uppercase; line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
  opacity: .85; max-width: 560px; margin: 0 auto 32px; line-height: 1.8;
}
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: background .3s; padding: 0;
}
.hero-dot.active { background: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 60vh; height: 60svh; min-height: 400px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.6));
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 300;
  letter-spacing: .3em; text-transform: uppercase;
}
.page-hero-content .sub {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  opacity: .75; margin-top: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px;
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; font-family: 'Montserrat', sans-serif;
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer; border: none;
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-purple { background: var(--purple); color: #fff; border: 1px solid var(--purple); }
.btn-purple:hover { background: var(--purple-dark); border-color: var(--purple-dark); }
.btn-dark { background: #111; color: #fff; border: 1px solid #111; }
.btn-dark:hover { background: #333; }

/* ===== SECTIONS ===== */
.section { padding: 80px 60px; }
.section-dark { background: var(--dark); color: #fff; }
.section-offwhite { background: var(--offwhite); }
.section-title {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--purple); font-weight: 600; margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 300;
  letter-spacing: .1em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 24px;
}
.section-body {
  font-size: .88rem; line-height: 1.9; max-width: 700px;
  color: #555; margin-bottom: 32px;
}
.section-body-light { color: rgba(255,255,255,.7); }

/* ===== GALLERY SLIDESHOW ===== */
.gallery-slide-wrap { position: relative; overflow: hidden; }
.gallery-slides { display: flex; transition: transform .6s ease; }
.gallery-slide { min-width: 100%; }
.gallery-slide img { width: 100%; height: 520px; object-fit: cover; display: block; content-visibility: auto; }
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: #fff; border: none;
  width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 5;
}
.slide-btn:hover { background: rgba(0,0,0,.7); }
.slide-btn.prev { left: 16px; }
.slide-btn.next { right: 16px; }

/* ===== SPACE CARDS (homepage) ===== */
.spaces-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.space-card {
  position: relative; overflow: hidden; height: 480px; cursor: pointer;
}
.space-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.space-card:hover img { transform: scale(1.05); }
.space-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
  pointer-events: none;
}
.space-card-label {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 8px;
}
.space-card-title {
  font-size: 1.4rem; font-weight: 300; letter-spacing: .15em;
  text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.space-card-cap {
  font-size: .62rem; letter-spacing: .12em; color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-text .section-body { max-width: none; }

/* ===== AMENITIES LIST ===== */
.amenities-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px 40px;
  margin-top: 24px;
}
.amenities-list li {
  font-size: .8rem; line-height: 1.6; color: #444;
  padding-left: 18px; position: relative;
}
.amenities-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--purple); font-weight: 600;
}

/* ===== SPECS GRID ===== */
.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.08); margin-top: 48px;
}
.spec-card {
  padding: 36px 28px; background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.spec-card h3 {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px; font-weight: 600;
}
.spec-card p {
  font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.65);
}

/* ===== PHOTO GRID (galleries) ===== */
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.photo-grid-item { overflow: hidden; }
.photo-grid-item img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .4s ease; display: block; content-visibility: auto;
}
.photo-grid-item:hover img { transform: scale(1.04); }
.photo-grid-item.wide { grid-column: span 2; }
.photo-grid-item.wide img { height: 280px; }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.video-card { background: #f8f8f8; overflow: hidden; }
.video-card-thumb {
  position: relative; overflow: hidden; height: 200px;
  background: #222;
}
.video-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; opacity: .8;
}
.video-card-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; background: rgba(107,47,160,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.video-card-info { padding: 16px 18px; }
.video-card-title {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; line-height: 1.5; color: #222;
}

/* ===== FLOOR PLAN ===== */
.floorplan-wrap {
  background: #f8f8f8; padding: 48px; text-align: center;
  margin-top: 48px; overflow: hidden;
}
.floorplan-wrap img { max-width: 100%; width: 100%; height: auto; margin: 0 auto; display: block; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px;
  max-width: 1100px; margin: 0 auto;
}
.contact-info-label {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--purple); font-weight: 600; margin-bottom: 16px; display: block;
}
.contact-info p { font-size: .85rem; line-height: 2; color: #444; }
.contact-info a { color: var(--purple); }
.contact-iframe { width: 100%; height: 900px; border: none; }

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d; color: rgba(255,255,255,.5);
  padding: 44px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-col { font-size: .72rem; line-height: 2; }
.footer-col strong { color: rgba(255,255,255,.85); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-logo img { height: 50px; opacity: .7; }
.footer-credit { font-size: .62rem; opacity: .4; }

/* ===== GALLERY CATEGORY ITEMS (events page) ===== */
.event-categories {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  max-width: 1100px; margin: 40px auto 0;
}
.event-cat-item { position: relative; overflow: hidden; cursor: pointer; }
.event-cat-item img { width: 100%; height: 360px; object-fit: cover; transition: transform .5s; display: block; }
.event-cat-item:hover img { transform: scale(1.04); }
.event-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 50%);
  display: flex; align-items: flex-end; padding: 24px;
  pointer-events: none;
}
.event-cat-title {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { height: 45vh; height: 45svh; min-height: 280px; }

  /* Kill desktop hover dropdown on mobile */
  .nav-links > li:hover .nav-dropdown { display: none; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    max-height: calc(100vh - 72px);
    background: #0a0a0a;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 0 0 60px; z-index: 1000;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  /* Top-level nav items */
  .nav-links.open > li {
    height: auto;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open > li:last-child { border-bottom: none; }

  /* All top-level links and spans — big tap targets */
  .nav-links.open > li > a,
  .nav-links.open > li > span {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px;
    font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.8); font-weight: 500;
    min-height: 64px; width: 100%; cursor: pointer;
  }
  .nav-links.open > li > a:active { background: rgba(255,255,255,.05); }

  /* Arrow indicator on dropdown parents */
  .nav-links.open > li > span .nav-caret { display: none; }
  .nav-links.open > li > span::after {
    content: '+';
    font-size: 1.4rem; font-weight: 200; line-height: 1;
    color: rgba(255,255,255,.3);
    transition: transform .2s, color .2s;
    flex-shrink: 0;
  }
  .nav-links.open > li > span.dropdown-open::after {
    content: '−';
    color: var(--purple);
  }
  .nav-links.open > li > span.dropdown-open {
    color: #fff;
    background: rgba(107,47,160,.2);
    border-left: 3px solid var(--purple);
  }

  /* Dropdown sub-items */
  .nav-dropdown {
    display: none !important;
    position: static !important;
    box-shadow: none; border: none;
    background: rgba(255,255,255,.04);
    min-width: unset; top: auto; left: auto;
  }
  .nav-dropdown.mobile-open {
    display: block !important;
  }
  .nav-dropdown a {
    display: flex; align-items: center;
    padding: 18px 28px 18px 48px;
    font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.6); font-weight: 400;
    border-left: none; border-bottom: 1px solid rgba(255,255,255,.04);
    min-height: 58px;
  }
  .nav-dropdown a::before {
    content: '—';
    color: var(--purple); margin-right: 12px; font-size: .7rem;
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:active { background: rgba(107,47,160,.2); color: #fff; }

  .nav-hamburger { display: flex; }
  .section { padding: 52px 24px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-item.wide { grid-column: span 1; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .event-categories { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 36px 24px; }
}

  /* Mobile font floor — prevent sub-12px labels */
  .section-title { font-size: .7rem; letter-spacing: .2em; }
  .contact-info-label { font-size: .7rem; }
  .video-card-title { font-size: .78rem; }
  .spec-card h3 { font-size: .7rem; }
  .footer-col { font-size: .78rem; }
  .footer-col strong { font-size: .7rem; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .floorplan-wrap { padding: 24px 16px; }
}

/* ===== SOCIAL ICONS ===== */
.footer-social { display: flex; gap: 12px; align-items: center; margin-top: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  transition: transform .2s, filter .2s;
  flex-shrink: 0;
}
.footer-social a:hover { transform: translateY(-2px); filter: brightness(1.15); }
.footer-social a.social-instagram,
.footer-social a.social-facebook { background: transparent; }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,.75); transition: fill .2s; }
.footer-social a:hover svg { fill: #fff; }

/* ===== FOOTER LEGAL LINKS ===== */
.footer-legal {
  width: 100%; text-align: center;
  padding-top: 20px; margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: center; gap: 28px;
  flex-basis: 100%;
}
.footer-legal a {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.35); text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }
