/* ==========================================================================
   In 4/4 Time Entertainment — Shared Stylesheet
   Reusable design system only. No page-specific layout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   2. Custom Properties
   ========================================================================== */
:root {
  --bg: #08001A;
  --primary: #7C3AED;
  --accent: #A78BFA;
  --gold: #E8A623;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.55);
  --card-bg: rgba(124, 58, 237, 0.08);
  --card-border: rgba(124, 58, 237, 0.2);

  --footer-bg: #04000D;
  --nav-height: 111px;
  --max-width: 1140px;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --font: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ==========================================================================
   3. Body
   ========================================================================== */
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition);
}

.nav__cta:hover {
  background: #6d2fd6;
  transform: translateY(-1px);
}

/* Mobile hamburger — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ==========================================================================
   5. Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  overflow: hidden;
}

/* Radial purple glow accents */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero__glow--1 {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 70%);
}

.hero__glow--2 {
  bottom: 5%;
  left: 12%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent 70%);
}

.hero__glow--3 {
  top: 25%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
}

.hero > *:not(.hero__glow) {
  position: relative;
  z-index: 1;
}

/* Badge / pill with pulsing dot */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--card-bg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero__subhead {
  max-width: 56ch;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Scroll indicator with animated line */
.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 48px;
  background: var(--card-border);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}

/* ==========================================================================
   Buttons (shared)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: var(--text);
  background: var(--primary);
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  background: #6d2fd6;
  transform: translateY(-2px);
}

/* Primary CTA — gold is used ONLY here */
.btn--cta {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(232, 166, 35, 0.25);
}

.btn--cta:hover {
  background: #f0b338;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn--outline:hover {
  background: var(--card-bg);
}

/* ==========================================================================
   6. Marquee Strip
   ========================================================================== */
.marquee {
  background: var(--primary);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.marquee__item::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.8rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   7. Section Wrapper
   ========================================================================== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

/* ==========================================================================
   8. Section Labels, Titles, Body
   ========================================================================== */
.section__label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section__text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head {
  margin-bottom: 3rem;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__text {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   9. Services Grid
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  transition: transform var(--transition), border-color var(--transition),
    background var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.14);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  font-size: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card__tag {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}

/* ==========================================================================
   10. Stats Bar
   ========================================================================== */
.stats {
  background: rgba(124, 58, 237, 0.12);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stats__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__num {
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--accent);
}

.stat__label {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ==========================================================================
   11. Testimonials
   ========================================================================== */
.testimonials-band {
  background: rgba(124, 58, 237, 0.05);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  position: relative;
  padding: 2.5rem 1.75rem 1.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(167, 139, 250, 0.3);
}

.testimonial__stars {
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.testimonial__text {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================================================
   12. CTA Banner
   ========================================================================== */
.cta-banner {
  text-align: center;
  padding: 4.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #7C3AED 0%, #4c1d95 100%);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--card-border);
}

.footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__brand-logo span {
  color: var(--accent);
}

.footer__about {
  max-width: 38ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__col h4 {
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer__col a {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--card-border);
}

.footer__bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition),
    transform var(--transition);
}

.footer__social-btn:hover {
  color: var(--text);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   14. Forms
   ========================================================================== */
.form {
  display: grid;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

.form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option {
  background: var(--bg);
  color: var(--text);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__submit {
  justify-self: start;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.form__submit:hover {
  background: #6d2fd6;
  transform: translateY(-2px);
}

/* ==========================================================================
   15. Admin
   ========================================================================== */
/* PIN screen */
.pin-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem 1.5rem;
}

.pin-screen__box {
  width: 100%;
  max-width: 360px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.pin-screen__box h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.pin-screen__box p {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pin-screen__input {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: var(--font);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}

.pin-screen__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

.pin-screen__error {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #ff6b6b;
}

/* Dashboard summary cards */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.summary-card {
  padding: 1.5rem 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.summary-card__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.summary-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

/* Bookings table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.bookings-table th,
.bookings-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  white-space: nowrap;
}

.bookings-table thead th {
  background: rgba(124, 58, 237, 0.15);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.bookings-table tbody tr {
  border-top: 1px solid var(--card-border);
  transition: background var(--transition);
}

.bookings-table tbody tr:hover {
  background: var(--card-bg);
}

/* Status pills */
.status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status--pending {
  background: rgba(232, 166, 35, 0.15);
  color: var(--gold);
}

.status--confirmed {
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent);
}

.status--cancelled {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

/* Action buttons */
.action-btn {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--primary);
  transition: background var(--transition), transform var(--transition);
}

.action-btn:hover {
  background: #6d2fd6;
  transform: translateY(-1px);
}

.action-btn--ghost {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--muted);
}

.action-btn--ghost:hover {
  background: var(--card-bg);
  color: var(--text);
}

.action-btn--danger {
  background: transparent;
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
}

.action-btn--danger:hover {
  background: rgba(255, 107, 107, 0.12);
}

/* Modal / popup overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4, 0, 13, 0.75);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal__title {
  font-size: 1.35rem;
  font-weight: 700;
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 1.25rem;
  transition: background var(--transition), color var(--transition);
}

.modal__close:hover {
  background: var(--card-bg);
  color: var(--text);
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ==========================================================================
   16. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--card-border);
    z-index: 999;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 4rem 1.25rem;
  }
}

/* ==========================================================================
   17. About Page
   ========================================================================== */
.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--card-border);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  object-fit: unset;
}

.survivor-block {
  padding: 3.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 139, 250, 0.3);
  background: linear-gradient(135deg,
    rgba(124, 58, 237, 0.12) 0%,
    rgba(124, 58, 237, 0.04) 100%);
}

.survivor-block__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.5rem;
}

.survivor-block__title span {
  color: var(--accent);
}

.survivor-block__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 70ch;
}

.survivor-block__sign {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split__img {
    order: -1;
  }
  .survivor-block {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   18. Pricing Page
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.15);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
}

.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.pricing-card__price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pricing-card__per {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Travel fee table */
.travel-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.travel-table th,
.travel-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
}

.travel-table thead th {
  background: rgba(124, 58, 237, 0.2);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.travel-table tbody tr {
  border-top: 1px solid var(--card-border);
}

.travel-table tbody tr:hover {
  background: var(--card-bg);
}

.travel-table td:last-child {
  font-weight: 600;
  color: var(--accent);
}

.travel-free {
  color: #4ade80 !important;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   19. Contact Page
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-info__value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info__value a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--accent);
}

.venmo-qr {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  object-fit: cover;
}

.form-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

#form-success {
  display: none;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--card-border);
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

/* Form validation error state */
.form__input--error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
}

/* ==========================================================================
   20. Admin Dashboard
   ========================================================================== */
.admin-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
}

.admin-header__actions {
  display: flex;
  gap: 0.75rem;
}

/* ==========================================================================
   21. Hero Height + Glow Correction (appended override)
   The nav is sticky and in flow, so the hero should fill the viewport
   *below* the nav. The hero text is vertically centered, so the main glow
   is re-centered behind it — independent of nav height. Earlier .hero and
   .hero__glow--1 rules are left intact; these later rules override only the
   height and glow position.
   ========================================================================== */
.hero {
  min-height: calc(100vh - var(--nav-height));
}

.hero__glow--1 {
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ==========================================================================
   22. Pricing Cards Equal-Height Correction (appended override)
   The earlier .pricing-grid uses align-items: start, so cards size to their
   own content. Stretching the grid items makes all cards in a row match the
   tallest one; the card is already a flex column and .pricing-card__features
   already has flex: 1, so the "Book This Package" button pins to the bottom.
   ========================================================================== */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  height: 100%;
}

/* ==========================================================================
   23. Karaoke Cruise Page
   ========================================================================== */
.cruise-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 5rem 1.5rem;
  background: url('../assets/ms-mount-washington.jpg') center / cover no-repeat;
}

/* Dark overlay so the heading stays legible over the photo */
.cruise-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 0, 26, 0.7) 0%, rgba(8, 0, 26, 0.88) 100%);
}

.cruise-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.cruise-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.cruise-hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--accent);
}

.cruise-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.cruise-fact {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  text-align: center;
}

.cruise-fact__label {
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cruise-fact__value {
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cruise-cta {
  text-align: center;
}

.cruise-note {
  max-width: 580px;
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ==========================================================================
   24. Come See Us Page — Event & Venue Cards
   ========================================================================== */

/* Special-event cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
}

.event-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background: rgba(124, 58, 237, 0.08);
}

.event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
  padding: 1.75rem;
}

.event-card__title {
  font-size: 1.4rem;
  font-weight: 700;
}

.event-card__venue {
  font-weight: 600;
  color: var(--accent);
}

.event-card__time {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}

.event-card__meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.event-card__btn-wrap {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Weekly venue cards — uniform size with image-or-fallback square media area */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.venue-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
}

.venue-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
}

/* Image sits on top of the fallback; if it fails to load, inline onerror
   hides it and the purple initials circle shows through. */
.venue-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__fallback {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
  padding: 1.5rem;
}

.venue-card__name {
  font-size: 1.2rem;
  font-weight: 700;
}

.venue-card__time {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}

.venue-card__meta {
  font-size: 0.92rem;
  color: var(--muted);
}

.venue-card__btn-wrap {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* ==========================================================================
   25. Cruise Confirmation — Venmo Payment Card
   ========================================================================== */
.pay-card {
  max-width: 360px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.pay-card__qr {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
}

.pay-card__handle {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ==========================================================================
   26. Payment Page — Method Cards
   ========================================================================== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.payment-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.payment-card__qr {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}

.payment-card__handle {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.payment-card__email {
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  word-break: break-word;
}

.payment-card__detail {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Subtle horizontal divider (scoped to the cruise registration page) */
.cruise-divider {
  border: none;
  border-top: 1px solid rgba(124, 58, 237, 0.4);
  margin: 60px auto;
  max-width: 800px;
}

/* Cruise confirmation — one continuous, evenly spaced, centered flow */
.confirmation-flow .page-hero {
  padding: 2rem 0 0;
  border-bottom: none;
  text-align: center;
}

.confirmation-flow .section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.confirmation-flow .section__text {
  margin-left: auto;
  margin-right: auto;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 2rem;
  gap: 0;
}

.progress-steps__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.progress-steps__circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  transition: background 0.3s, color 0.3s;
}

.progress-steps__label {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s;
}

.progress-steps__line {
  height: 2px;
  width: 100px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 32px;
  transition: background 0.3s;
}

.progress-steps__step--active .progress-steps__circle {
  background: #E8A623;
  color: #000000;
}

.progress-steps__step--active .progress-steps__label {
  color: #E8A623;
}

.progress-steps__step--complete .progress-steps__circle {
  background: #7C3AED;
  color: #ffffff;
}

.progress-steps__step--complete .progress-steps__label {
  color: #A78BFA;
}

.progress-steps__line--complete {
  background: #7C3AED;
}

/* Page intro heading */
#page-intro h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  #page-intro h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
