/* ============================================
   HnK Photo Booth subsite styles
   Inherits design tokens from /styles.css plus booth-specific styles
   ============================================ */

/* === Reset/base inherited from ../styles.css === */

:root {
  --cream: #faf6f0;
  --charcoal: #2c2c2c;
  --charcoal-soft: #4a4a4a;
  --terracotta: #006f65;
  --gold: #c9af7f;
  --muted: #7c7670;
  --soft-grey: #e8e2d6;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-md: 0 6px 18px rgba(43,37,32,0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Header === */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.logo {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links li a {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1.8px;
  transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }

/* === Dropdown === */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a .caret {
  display: inline-block;
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.2s, color 0.2s;
  color: rgba(255,255,255,0.6);
}
.nav-links .has-dropdown:hover > a .caret,
.nav-links .has-dropdown:focus-within > a .caret { transform: rotate(180deg); color: var(--gold); }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 110;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown li { margin: 0; }
.nav-links .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-links .dropdown li a:hover {
  background: rgba(201,175,127,0.10);
  color: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: 0; color: #fff;
  font-size: 24px; padding: 4px 8px; cursor: pointer;
}

/* === Buttons === */
.btn {
  display: inline-block;
  background: var(--gold); color: var(--charcoal);
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 0; cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); background: #d9c08e; box-shadow: 0 8px 20px rgba(201,175,127,0.30); }
.btn.btn-outline {
  background: transparent; color: var(--gold); border: 1.5px solid var(--gold);
}
.btn.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn.btn-small { padding: 10px 20px; font-size: 12px; }
.btn.btn-light { background: #fff; color: var(--charcoal); }
.btn.btn-light:hover { background: var(--cream); }

/* === Hero (dark/cinematic) === */
.pb-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 60%, #3a3a3a 100%);
  color: #fff;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pb-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,175,127,0.18), transparent 50%);
  pointer-events: none;
}
.pb-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.pb-hero .hero-tag {
  display: inline-block;
  background: rgba(201,175,127,0.18);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 26px;
}
.pb-hero h1 {
  font-family: 'Italiana', var(--serif);
  font-size: 76px; font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.pb-hero h1 .accent { color: var(--gold); font-style: italic; }
.pb-hero .pb-sub {
  font-size: 19px; line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 680px; margin: 0 auto 36px;
}
.pb-hero .hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* === Section === */
.section { padding: 90px 0; }
.section-title {
  font-family: var(--serif);
  font-size: 42px; font-weight: 500;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  max-width: 660px; margin: 0 auto 50px;
  line-height: 1.6;
}
.section-tag {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* === Booth Type Cards === */
.booth-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1100px) { .booth-grid { grid-template-columns: 1fr; max-width: 600px; } }
.booth-card-img.video360 {
  background: linear-gradient(135deg, #4a1f6f, #c08877);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.booth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.booth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(43,37,32,0.12);
}
.booth-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  position: relative;
}
.booth-card-img.glam {
  background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.booth-card-img.social {
  background: linear-gradient(135deg, #006f65, #00897c);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.booth-card-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.95); color: var(--charcoal);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.booth-card-body {
  padding: 32px 30px; flex: 1;
  display: flex; flex-direction: column;
}
.booth-card-body h3 {
  font-family: var(--serif); font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.booth-card-body .booth-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--terracotta);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.booth-card-body .booth-price small {
  font-family: var(--sans); font-size: 13px;
  color: var(--muted); font-weight: 500;
  letter-spacing: normal; margin-left: 6px;
}
.booth-card-body p {
  color: var(--charcoal-soft); font-size: 15px;
  line-height: 1.65; margin-bottom: 18px;
}
.booth-card-body ul {
  list-style: none; padding: 0;
  margin-bottom: 24px; flex: 1;
}
.booth-card-body ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px; color: var(--charcoal-soft);
  line-height: 1.5;
}
.booth-card-body ul li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.booth-card .btn { width: 100%; }

/* === Features Grid (4-col) === */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--soft-grey);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.feature-card .fc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,175,127,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.feature-card .fc-icon svg { width: 28px; height: 28px; }
.feature-card h4 {
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  margin-bottom: 8px; color: var(--charcoal);
  letter-spacing: 0.3px;
}
.feature-card p {
  font-size: 13px; color: var(--charcoal-soft);
  line-height: 1.55;
}

/* === Package tiers === */
.pkg-tiers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; max-width: 1280px; margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1200px) { .pkg-tiers { grid-template-columns: repeat(2, 1fr); max-width: 760px; } }
@media (max-width: 700px)  { .pkg-tiers { grid-template-columns: 1fr; max-width: 420px; } }
.pkg-tier {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  border: 1px solid var(--soft-grey);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg-tier.featured {
  background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
  color: #fff;
  border: 0;
}
.pkg-tier.featured::before {
  content: 'Most popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--charcoal);
  padding: 6px 18px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap;
}
.pkg-tier .pt-label {
  font-size: 11px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}
.pkg-tier h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.pkg-tier.featured h3 { color: #fff; }
.pkg-tier .pt-tagline {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--muted);
}
.pkg-tier.featured .pt-tagline { color: rgba(255,255,255,0.65); }
.pkg-tier .pt-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--terracotta);
  letter-spacing: 1.2px;
  line-height: 1.05;
  margin-bottom: 6px;
  white-space: nowrap;
}
.pkg-tier.featured .pt-price { color: var(--gold); }
.pkg-tier .pt-price small {
  font-family: var(--sans); font-size: 14px;
  color: var(--muted); font-weight: 500;
  letter-spacing: normal; margin-left: 8px;
}
.pkg-tier.featured .pt-price small { color: rgba(255,255,255,0.65); }
.pkg-tier .pt-includes-heading {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin: 22px 0 14px;
  color: var(--charcoal);
}
.pkg-tier.featured .pt-includes-heading { color: rgba(255,255,255,0.85); }
.pkg-tier ul {
  list-style: none; padding: 0;
  margin-bottom: 28px; flex: 1;
}
.pkg-tier ul li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
}
.pkg-tier ul li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.pkg-tier .btn {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 11px;
  padding: 13px 10px;
  letter-spacing: 0.6px;
  white-space: nowrap;
  margin: 0 auto;
}

/* === Backdrop grid === */
.backdrop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; max-width: 1180px; margin: 0 auto;
}
.backdrop-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.backdrop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.backdrop-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream), var(--soft-grey));
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: rgba(0,0,0,0.3);
}
.backdrop-card h4 {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  padding: 14px 16px 16px;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

/* === Gallery / photo grid === */
.photo-gallery {
  columns: 4 240px; column-gap: 14px;
  max-width: 1300px; margin: 0 auto;
}
.photo-gallery .photo-item {
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--soft-grey));
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.2);
  font-family: var(--serif);
  font-size: 20px;
}
.photo-gallery .photo-item.tall { aspect-ratio: 2 / 3; }
.photo-gallery .photo-item.wide { aspect-ratio: 3 / 2; }

/* === FAQ === */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 12px;
  border: 1px solid var(--soft-grey);
}
.faq-q {
  font-family: var(--serif);
  font-size: 19px; font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 15px; line-height: 1.7;
  color: var(--charcoal-soft);
}
.faq-a a { color: var(--terracotta); font-weight: 600; }

/* === Testimonial pull-quote === */
.pb-quote {
  background: #2c2c2c; color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pb-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,175,127,0.12), transparent 60%);
}
.pb-quote-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  padding: 0 20px;
}
.pb-quote .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 22px;
}
.pb-quote blockquote {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 28px;
}
.pb-quote blockquote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 0;
}
.pb-quote .qa-name {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.6px;
}
.pb-quote .qa-event {
  font-size: 12px; color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 6px;
}

/* === Final CTA === */
.pb-cta {
  background: linear-gradient(135deg, var(--gold), #d9c08e);
  color: var(--charcoal);
  padding: 80px 0;
  text-align: center;
}
.pb-cta h2 {
  font-family: var(--serif);
  font-size: 44px; font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.pb-cta p {
  font-size: 17px; line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 620px; margin: 0 auto 32px;
}
.pb-cta .btn { background: var(--charcoal); color: var(--gold); }
.pb-cta .btn:hover { background: #1a1a1a; }

/* === Stats strip === */
.stats-strip {
  background: var(--cream); padding: 40px 0;
  border-top: 1px solid var(--soft-grey);
  border-bottom: 1px solid var(--soft-grey);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center; max-width: 980px; margin: 0 auto;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--terracotta);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: 8px;
}

/* === Footer === */
.footer {
  background: #1a1a1a;
  color: rgba(250,246,240,0.85);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(250,246,240,0.7);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.1);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(250,246,240,0.5);
  text-align: center;
  line-height: 1.7;
}
.footer-bottom a {
  color: rgba(250,246,240,0.7);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }
