/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0A0A;
  --pink: #FF1493;
  --pink-dark: #C4106F;
  --pink-glow: rgba(255,20,147,0.3);
  --pink-subtle: rgba(255,20,147,0.08);
  --gold: #C9A96E;
  --gold-light: #d4b97e;
  --white: #FFFFFF;
  --grey: #9A9A9A;
  --grey-dark: #666;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.age-gate-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}

.age-gate-card {
  position: relative; z-index: 2;
  max-width: 480px; width: 90%;
  padding: 3.5rem 3rem;
  text-align: center;
  background: rgba(10,5,12,0.9);
  border: 1px solid rgba(255,20,147,0.15);
  backdrop-filter: blur(40px);
}

.age-gate-card .logo-img { height: 50px; margin: 0 auto 1.8rem; filter: brightness(1); }
.age-gate-card h2 { font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; letter-spacing: 0.08em; }
.age-gate-card p { font-size: 0.8rem; color: var(--grey); line-height: 1.7; margin-bottom: 2rem; letter-spacing: 0.03em; }
.age-gate-line { width: 60px; height: 1px; background: var(--pink); margin: 0 auto 2rem; opacity: 0.5; }
.age-gate-buttons { display: flex; gap: 1rem; justify-content: center; }

.btn-age {
  padding: 1rem 2.8rem;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: var(--white);
  cursor: pointer; transition: all 0.35s ease;
}
.btn-age.primary { background: var(--pink); border-color: var(--pink); color: var(--white); }
.btn-age.primary:hover { background: #ff3da6; border-color: #ff3da6; }
.btn-age:not(.primary):hover { border-color: var(--white); }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  transition: background 0.4s ease;
}
nav.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); }

.nav-logo-img { height: 32px; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--pink); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-socials { display: flex; gap: 0.8rem; align-items: center; }
.nav-socials a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.nav-socials a:hover { color: var(--pink); }
.nav-socials svg { width: 16px; height: 16px; fill: currentColor; }

.nav-book {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--pink); color: var(--pink);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-book:hover { background: var(--pink); color: var(--white); }

.menu-toggle { display: none; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--white); margin: 6px 0; transition: all 0.3s ease; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center 30%/cover no-repeat;
  background-attachment: fixed;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 30%, rgba(10,10,10,0.6) 70%, var(--black) 100%),
    radial-gradient(ellipse at center, rgba(255,20,147,0.08) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; }

.hero-logo-img {
  height: clamp(160px, 24vw, 260px);
  margin: 0 auto 1.5rem;
  padding-top: 3rem;
  /* Neon shimmer — starts dark, flickers, then lights up */
  opacity: 0;
  filter: brightness(0.3);
  animation: neonIgnite 3s ease-out forwards;
}

/* Neon tube ignition: dim → flicker → full glow */
@keyframes neonIgnite {
  0%   { opacity: 0; filter: brightness(0.2) drop-shadow(0 0 0px var(--pink)); }
  8%   { opacity: 0.4; filter: brightness(0.5) drop-shadow(0 0 4px var(--pink)); }
  12%  { opacity: 0.15; filter: brightness(0.25) drop-shadow(0 0 1px var(--pink)); }
  20%  { opacity: 0.6; filter: brightness(0.6) drop-shadow(0 0 8px var(--pink)); }
  24%  { opacity: 0.2; filter: brightness(0.3) drop-shadow(0 0 2px var(--pink)); }
  32%  { opacity: 0.7; filter: brightness(0.7) drop-shadow(0 0 12px var(--pink)); }
  38%  { opacity: 0.35; filter: brightness(0.4) drop-shadow(0 0 4px var(--pink)); }
  48%  { opacity: 0.85; filter: brightness(0.85) drop-shadow(0 0 16px var(--pink)); }
  52%  { opacity: 0.5; filter: brightness(0.55) drop-shadow(0 0 6px var(--pink)); }
  62%  { opacity: 0.9; filter: brightness(0.9) drop-shadow(0 0 20px var(--pink)); }
  72%  { opacity: 0.95; filter: brightness(0.95) drop-shadow(0 0 24px var(--pink)); }
  85%  { opacity: 1; filter: brightness(1) drop-shadow(0 0 30px var(--pink)) drop-shadow(0 0 60px rgba(255,20,147,0.4)); }
  100% { opacity: 1; filter: brightness(1) drop-shadow(0 0 20px var(--pink)) drop-shadow(0 0 40px rgba(255,20,147,0.25)); }
}

/* After ignition: gentle halo breathing — grows then dims to near-zero */
.hero-logo-img.neon-on {
  animation: neonBreathe 4s ease-in-out infinite;
  opacity: 1;
}

@keyframes neonBreathe {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0px transparent) drop-shadow(0 0 0px transparent); }
  50%      { filter: brightness(1) drop-shadow(0 0 18px var(--pink)) drop-shadow(0 0 35px rgba(255,20,147,0.2)); }
}

.hero-tagline {
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 2rem;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 3rem; font-style: italic;
}

.btn-primary {
  display: inline-block; padding: 1rem 3.5rem;
  background: var(--pink); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.4s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: #ff3da6; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,20,147,0.25); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.4); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pink), transparent); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== VENUES ===== */
.venues-grid { display: grid; grid-template-columns: 1fr 1fr; position: relative; }

.venue-panel {
  position: relative; padding: 4rem; min-height: 550px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; cursor: pointer;
}

.venue-panel .venue-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.venue-panel:hover .venue-bg { transform: scale(1.03); }

.venue-panel.mount .venue-bg { background-image: url('../images/venue-mount.jpg'); }
.venue-panel.mount .venue-bg::after,
.venue-panel.rotorua .venue-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.3) 100%);
}

.venue-panel.rotorua .venue-bg { background-image: url('../images/venue-rotorua.jpg'); }

.venues-grid::after {
  content: ''; position: absolute; top: 15%; bottom: 15%; left: 50%;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  opacity: 0.3; z-index: 2;
}

.venue-content { position: relative; z-index: 2; }
.venue-panel .label { margin-bottom: 1rem; }
.venue-panel h2 { font-size: 2.8rem; margin-bottom: 0.8rem; line-height: 1.15; }
.venue-panel .venue-address { font-size: 0.8rem; color: var(--grey); margin-bottom: 0.5rem; line-height: 1.6; }
.venue-panel .venue-hours { font-size: 0.75rem; color: var(--grey-dark); margin-bottom: 1.8rem; }

.venue-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink);
}
.venue-link .arrow { transition: transform 0.3s ease; }
.venue-panel:hover .venue-link .arrow { transform: translateX(6px); }

/* ===== SERVICES ===== */
.services {
  padding: 8rem 3rem; text-align: center; position: relative;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,20,147,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-header { max-width: 600px; margin: 0 auto 5rem; position: relative; }
.section-header .label { margin-bottom: 1.2rem; display: block; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.2; }
.section-header p { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
.section-line { width: 60px; height: 1px; background: var(--pink); margin: 1.5rem auto 0; opacity: 0.5; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto; position: relative;
}

.service-card {
  position: relative; padding: 0; background: var(--glass);
  border: 1px solid var(--glass-border); text-align: center;
  transition: all 0.4s ease; overflow: hidden;
}

.service-card-img {
  width: 100%; height: 220px; object-fit: cover;
  filter: brightness(0.7); transition: all 0.5s ease;
}
.service-card:hover .service-card-img { filter: brightness(0.85); transform: scale(1.03); }

.service-card-img-wrap { overflow: hidden; }

.service-card-body { padding: 2rem 1.5rem 2rem; }

.service-card h3 { font-size: 1.6rem; margin-bottom: 0.8rem; font-weight: 400; }
.service-card p { font-size: 0.8rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card .card-link {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); display: inline-flex; align-items: center; gap: 0.5rem;
}

.service-card:hover { transform: translateY(-4px); border-color: rgba(255,20,147,0.2); }

/* ===== PARTIES ===== */
.parties { padding: 0 3rem 8rem; position: relative; }

.parties-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }

.party-card {
  position: relative; min-height: 480px; padding: 3rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; border: 1px solid var(--glass-border);
  cursor: pointer; transition: all 0.4s ease;
}

.party-card .party-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.party-card:hover .party-bg { transform: scale(1.03); }

.party-card.stag .party-bg { background-image: url('../images/venue-guys.jpg'); }
.party-card.stag .party-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 10%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.3) 100%);
}

.party-card.hens .party-bg { background-image: url('../images/bartender-hens.webp'); }
.party-card.hens .party-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 10%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.2) 100%);
}

.party-content { position: relative; z-index: 2; }
.party-card .label { margin-bottom: 1rem; }
.party-card h3 { font-size: 2.2rem; margin-bottom: 0.8rem; line-height: 1.2; }
.party-card p { font-size: 0.8rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.5rem; max-width: 380px; }

.party-features {
  list-style: none; margin-bottom: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.party-features li {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
}

.party-card:hover { transform: translateY(-4px); border-color: rgba(255,20,147,0.2); }

/* ===== PRIVATE HIRE ===== */
.private-hire {
  position: relative; padding: 6rem 3rem; text-align: center; overflow: hidden;
}
.private-hire::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--black), rgba(255,20,147,0.08), var(--black)),
    linear-gradient(to bottom, var(--black), transparent, var(--black));
}
.private-hire-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.private-hire h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.private-hire p { font-size: 0.9rem; color: var(--grey); line-height: 1.8; margin-bottom: 2.5rem; }

.btn-outline {
  display: inline-block; padding: 1rem 3rem;
  border: 1px solid var(--pink); color: var(--pink);
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.35s ease;
}
.btn-outline:hover { background: var(--pink); color: var(--white); }

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 5rem 3rem; text-align: center; position: relative;
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,20,147,0.05) 0%, transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-strip h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; font-style: italic; }
.cta-strip .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--pink); margin-bottom: 2rem; display: block; letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
footer { padding: 5rem 3rem 2rem; border-top: 1px solid var(--glass-border); }

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 4rem;
}

.footer-brand .footer-logo { height: 30px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.8rem; color: var(--grey); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); transition: all 0.3s ease;
}
.footer-socials a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-socials a:hover { border-color: var(--pink); color: var(--pink); }

.footer-col h4 {
  font-size: 0.7rem; font-family: 'Inter', sans-serif; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem;
}
.footer-col p, .footer-col a { font-size: 0.8rem; color: var(--grey); line-height: 2; display: block; }
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: var(--grey-dark);
}

/* ===== MOBILE BOOK BAR ===== */
.mobile-book-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  padding: 0.8rem 1.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border); justify-content: space-between; align-items: center;
}
.mobile-book-bar .phone-link { color: var(--white); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
  .parties-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }
  .venues-grid { grid-template-columns: 1fr; }
  .venues-grid::after { display: none; }
  .venue-panel { min-height: 400px; padding: 3rem 2rem; }
  .venue-panel h2 { font-size: 2rem; }
  .services { padding: 5rem 1.5rem; }
  .parties { padding: 0 1.5rem 5rem; }
  .party-card { min-height: 350px; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .mobile-book-bar { display: flex; }
  footer { padding-bottom: 5rem; }
}
