/* ============================================
   SPLASH PAGE — index.html
   ============================================ */

body::after {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(174,0,255,0.15) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.top-accent {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--purple) 30%, #d966ff 70%, transparent 100%);
  z-index: 200;
}

.page {
  position: relative; z-index: 1;
  width: 100vw; height: 100vh;
  display: grid;
  grid-template-rows: 72px 1fr 48px;
  overflow: hidden;
}

/* ── Top Bar ── */
.top-bar {
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid var(--faint);
  position: relative;
}

.logo { position: absolute; left: 48px; }
.logo img { height: 46px; width: auto; }

.top-location {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-size: 15px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  white-space: nowrap;
  transition: color var(--transition);
}
.top-location:hover { color: var(--white); }

.top-actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }

.top-actions .btn-ghost { font-size: 14px; padding: 11px 22px; letter-spacing: 0.05em; }

/* ── Content columns ── */
.content {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  min-height: 0;
}

.panel-left,
.panel-right {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  gap: 32px;
}
.panel-left  { border-right: 1px solid var(--faint); }
.panel-right { border-left:  1px solid var(--faint); }

.panel-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.info-block { display: flex; flex-direction: column; gap: 7px; }
.info-block .lbl {
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--purple);
}
.info-block .val {
  font-size: 20px; letter-spacing: 0.03em;
  color: var(--white); font-weight: 300; line-height: 1.55;
}
.info-block a { color: var(--white); }
.info-block a:hover { color: var(--purple); }

.btn-stack { display: flex; flex-direction: column; gap: 10px; }
.btn-stack .btn {
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 15px 22px;
}

.panel-left .btn-outline {
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 16px 22px;
}

.splash-tattoo-btn {
  font-size: 14px;
  padding: 12px 18px;
  align-self: flex-start;
}

/* ── Wizard ── */
.wizard-stage {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.wizard-stage::before {
  content: '';
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(174,0,255,0.18) 0%, transparent 65%);
  filter: blur(32px);
  pointer-events: none; z-index: 1;
}

.wizard-link {
  position: relative; z-index: 2;
  display: block;
  max-height: calc(100vh - 72px - 48px - 20px);
}

.wizard-img {
  display: block;
  max-height: calc(100vh - 72px - 48px - 20px);
  width: auto;
  opacity: 0;
  animation: fadeWizard 0.7s 0.1s ease forwards,
             glow  5s 0.8s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(174,0,255,0.38)); }
  50%       { filter: drop-shadow(0 0 52px rgba(174,0,255,0.72)); }
}
@keyframes fadeWizard {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── LGBTQ Badge ── */
.lgbtq-wrap { display: flex; justify-content: center; }
.lgbtq-badge img {
  width: 60px;
  height: 60px;
  height: 80px; width: auto;
  transition: opacity var(--transition), transform var(--transition);
}
.lgbtq-badge:hover img { opacity: 0.88; transform: scale(1.05); }

/* ── Bottom Bar ── */
.bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-top: 1px solid var(--faint);
  position: relative;
}
.bottom-insta {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 300; white-space: nowrap;
  transition: color var(--transition);
}
.bottom-insta:hover { color: var(--purple); }
.bottom-spacer { visibility: hidden; font-size: 12px; letter-spacing: 0.18em; }
.copyright {
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,243,238,0.22);
}
.copyright a:hover { color: var(--purple); }

/* ── Entrance animations ── */
.top-bar    { animation: rise 0.5s 0.05s ease both; }
.panel-left { animation: rise 0.5s 0.15s ease both; }
.panel-right{ animation: rise 0.5s 0.20s ease both; }
.bottom-bar { animation: rise 0.5s 0.25s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE — Splash Page
   ============================================ */
@media (max-width: 768px) {

  .page {
    height: auto;
    min-height: 100vh;
    grid-template-rows: 64px 1fr auto;
    overflow-y: auto;
  }

  /* Top bar: logo left, Book Now right */
  .top-bar {
    padding: 0 24px;
  }
  .logo { position: static; }
  .logo img { height: 38px; }
  .top-location { display: none; }
  .top-actions {
    margin-left: auto;
  }
  .top-actions .btn-ghost { display: none; }
  .top-actions .btn-solid { font-size: 13px; padding: 10px 16px; }

  /* Single column layout */
  .content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  /* Wizard center stage */
  .wizard-stage {
    order: -1;
    padding: 32px 24px 16px;
    min-height: 55vw;
  }
  .wizard-stage::before { display: none; }
  .wizard-link { max-height: 70vw; }
  .wizard-img {
    max-height: 70vw;
    max-width: 90vw;
  }

  /* Panels become horizontal info strips */
  .panel-left,
  .panel-right {
    border: none;
    border-top: 1px solid var(--faint);
    padding: 28px 24px;
    gap: 20px;
    flex-direction: column;
  }

  .info-block .val { font-size: 16px; }

  .panel-left .btn-outline {
    font-size: 15px;
    padding: 14px 20px;
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }

  .btn-stack .btn { font-size: 15px; padding: 14px 20px; }

  .lgbtq-badge img {
  width: 60px;
  height: 60px; height: 60px; }

  /* Bottom bar */
  .bottom-bar {
    padding: 0 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    height: auto;
    padding: 12px 24px;
  }
  .bottom-insta {
    position: static;
    transform: none;
    order: -1;
    width: 100%;
    text-align: center;
  }
  .bottom-spacer { display: none; }
  .copyright { font-size: 9px; width: 100%; text-align: center; }
}
