/*
Theme Name: Picture It 4U Premium
Theme URI: https://pictureit4u.com
Author: Picture It 4U
Author URI: https://pictureit4u.com
Description: Premium all-inclusive photobooth rental theme for Picture It 4U — South & Central Florida's luxury event experience brand. Features full SEO optimization, schema markup, Apple/mobile compatibility, and a white-glove booking experience.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
License URI: https://pictureit4u.com
Text Domain: pictureit4u
Tags: photobooth, event, luxury, rental, florida, responsive, custom-background, custom-logo, custom-menu, featured-images, full-site-editing
*/

/* =============================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
   pictureit4u.com color system
   ============================================= */
:root {
  /* Brand Colors */
  --color-primary:       #0a0a16;   /* Deep midnight navy */
  --color-primary-soft:  #12122a;   /* Slightly lighter navy */
  --color-gold:          #c8a951;   /* Signature champagne gold */
  --color-gold-light:    #e8cb78;   /* Light gold for hover/accents */
  --color-gold-dark:     #9e8030;   /* Darker gold for depth */
  --color-white:         #ffffff;
  --color-off-white:     #f9f8f4;
  --color-gray-100:      #f4f3ef;
  --color-gray-200:      #e5e4de;
  --color-gray-300:      #c8c7bf;
  --color-gray-500:      #7a7a6e;
  --color-gray-700:      #3d3d35;
  --color-text:          #1c1c2e;
  --color-text-muted:    #5a5a6e;
  --color-overlay:       rgba(10, 10, 22, 0.72);
  --color-overlay-heavy: rgba(10, 10, 22, 0.88);
  --color-gold-glow:     rgba(200, 169, 81, 0.18);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-xxl: 11rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1440px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,10,22,0.10);
  --shadow-md:   0 8px 32px rgba(10,10,22,0.16);
  --shadow-lg:   0 20px 60px rgba(10,10,22,0.24);
  --shadow-gold: 0 4px 24px rgba(200,169,81,0.28);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   600ms ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--color-gold-light);
}

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-xl);
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--gold-bg {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
}

.section--gray {
  background-color: var(--color-gray-100);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.flex { display: flex; }
.flex--center { justify-content: center; align-items: center; }
.flex--between { justify-content: space-between; align-items: center; }
.flex--wrap { flex-wrap: wrap; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.display-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

.heading-1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
}

.heading-2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 600;
}

.subheading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.body-sm {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Gold highlight text effect */
.text-highlight {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,81,0.45);
  color: var(--color-primary);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-primary-soft);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

/* =============================================
   BADGES & TAGS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--border-radius-pill);
  border: 1px solid;
}

.badge--gold {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.badge--dark {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.badge--new {
  background: linear-gradient(135deg, #7b3fe4, #c850c0);
  border-color: transparent;
  color: white;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header .subheading {
  margin-bottom: 0.75rem;
}

.section-header .display-2 {
  margin-bottom: 1rem;
}

.section-header .body-lg {
  max-width: 680px;
  color: var(--color-text-muted);
}

.section-header.text-center .body-lg {
  margin-inline: auto;
}

/* =============================================
   NAVIGATION / HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10,10,22,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-gold-light);
  background: rgba(200,169,81,0.08);
}

.site-nav .nav-cta {
  margin-left: 0.75rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--color-primary);
  border-top: 1px solid rgba(200,169,81,0.1);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-gold-light);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1.25rem;
  text-align: center;
  justify-content: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,22,0.95) 0%,
    rgba(10,10,22,0.60) 50%,
    rgba(10,10,22,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item .icon {
  color: var(--color-gold);
  font-size: 1rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   FEATURES / TRUST BAR
   ============================================= */
.features-bar {
  background: var(--color-primary-soft);
  border-bottom: 1px solid rgba(200,169,81,0.12);
  padding-block: 1.5rem;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.feature-item .icon {
  font-size: 1rem;
  color: var(--color-gold);
}

/* =============================================
   BOOTHS GRID
   ============================================= */
.booths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.booth-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.booth-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.booth-card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.booth-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-primary);
  overflow: hidden;
}

.booth-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.booth-card:hover .booth-card-image img {
  transform: scale(1.05);
}

.booth-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}

.booth-card-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(10,10,22,0.75);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 1;
}

.booth-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booth-card-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.booth-card-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}

.booth-card-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.booth-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.booth-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  line-height: 1.5;
}

.booth-feature-item::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.booth-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
  margin-top: auto;
}

.booth-price {
  display: flex;
  flex-direction: column;
}

.booth-price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booth-price-amount {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.booth-price-period {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* =============================================
   PACKAGES / PRICING SECTION
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.package-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-card--popular {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  position: relative;
  z-index: 1;
}

.package-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.popular-label {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
  color: var(--color-primary);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem;
}

.package-header {
  background: var(--color-primary);
  padding: 2rem;
  text-align: center;
  color: var(--color-white);
}

.package-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.package-price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
}

.package-price-amount {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.package-price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.package-duration {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.package-body {
  padding: 2rem;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.55;
}

.package-feature .check {
  width: 20px;
  height: 20px;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--color-gold);
  margin-top: 0.15rem;
}

.package-feature .check::after {
  content: '✓';
  font-weight: 800;
}

.package-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Duration Tabs */
.duration-tabs {
  display: flex;
  background: var(--color-gray-100);
  border-radius: var(--border-radius-pill);
  padding: 4px;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 3rem;
}

.duration-tab {
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
}

.duration-tab.active,
.duration-tab:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   ADD-ONS SECTION
   ============================================= */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.addon-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: all var(--transition-base);
  text-align: center;
}

.addon-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.addon-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.addon-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.addon-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.addon-price {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-gold-dark);
}

.addon-price-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.event-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.event-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card-bg {
  transform: scale(1.08);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,22,0.92) 0%, rgba(10,10,22,0.3) 50%, transparent 100%);
  transition: all var(--transition-base);
}

.event-card:hover .event-card-overlay {
  background: linear-gradient(to top, rgba(10,10,22,0.95) 0%, rgba(10,10,22,0.5) 60%, rgba(10,10,22,0.1) 100%);
}

.event-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  color: var(--color-white);
}

.event-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.event-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.event-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.event-card:hover .event-desc {
  max-height: 80px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9625rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.testimonial-event {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* =============================================
   STATS / NUMBERS
   ============================================= */
.stats-bar {
  background: var(--color-primary);
  padding-block: 4rem;
  border-top: 1px solid rgba(200,169,81,0.15);
  border-bottom: 1px solid rgba(200,169,81,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  cursor: pointer;
  font-size: 1.0125rem;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover,
.faq-item.open .faq-question {
  color: var(--color-gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-gold);
  transition: all var(--transition-fast);
  background: var(--color-gray-100);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* =============================================
   CTA / BOOKING SECTION
   ============================================= */
.cta-section {
  position: relative;
  background: var(--color-primary);
  padding-block: var(--space-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,81,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-section h2 {
  color: var(--color-white);
}

.cta-section .body-lg {
  color: rgba(255,255,255,0.72);
  margin-block: 1.25rem 2.5rem;
}

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

.cta-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,81,0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--color-white);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--color-gold-light);
}

/* =============================================
   SEASONAL PRICING BANNER
   ============================================= */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.seasonal-card {
  background: var(--color-primary-soft);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--color-white);
}

.seasonal-badge {
  display: inline-block;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.seasonal-badge--increase { color: #ff6b6b; }
.seasonal-badge--discount { color: #69db7c; }
.seasonal-badge--early    { color: var(--color-gold-light); }

.seasonal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.seasonal-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-gray-200);
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.60);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.75rem;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* Service areas */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.area-tag {
  font-size: 0.78rem;
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.18);
  color: rgba(255,255,255,0.55);
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-pill);
}

/* =============================================
   FLOATING BOOKING CTA (mobile)
   ============================================= */
.float-booking {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  padding: 0.9rem 2rem;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(200,169,81,0.4);
}

/* =============================================
   ANIMATE ON SCROLL
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--border-radius);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}

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

/* =============================================
   BREADCRUMBS & INNER PAGES
   ============================================= */
.page-hero {
  background: var(--color-primary);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,81,0.1) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--color-white);
  position: relative;
}

.page-hero .body-lg {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  position: relative;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

/* =============================================
   WORDPRESS CORE OVERRIDES
   ============================================= */
.wp-block-image img {
  border-radius: var(--border-radius);
}

.wp-block-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--color-text-muted);
}

.alignwide {
  max-width: calc(var(--container-max) + 4rem);
  margin-inline: auto;
}

.alignfull {
  max-width: 100%;
}

/* =============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --space-xl: 5rem;
  }

  .booths-grid,
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid    { grid-template-columns: repeat(2, 1fr); }
  .events-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .package-card--popular { transform: none; }
  .package-card--popular:hover { transform: translateY(-4px); }

  .contact-form-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  /* Nav */
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Grids */
  .booths-grid,
  .packages-grid,
  .seasonal-grid { grid-template-columns: 1fr; }
  .addons-grid   { grid-template-columns: repeat(2, 1fr); }
  .events-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  /* Hero */
  .hero-trust { gap: 1.25rem; }
  .trust-item { font-size: 0.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Float CTA */
  .float-booking { display: flex; }

  /* Section header */
  .section-header { margin-bottom: 2.5rem; }

  .stat-number { font-size: 2.25rem; }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* =============================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .duration-tabs { width: 100%; justify-content: stretch; }
  .duration-tab { flex: 1; text-align: center; }
  .features-list { flex-direction: column; align-items: center; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .site-header,
  .hero-scroll,
  .float-booking,
  .cta-section { display: none !important; }

  body { color: #000; background: #fff; }
  a { color: #000; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* =============================================
   HIGH CONTRAST MODE
   ============================================= */
@media (prefers-color-scheme: dark) {
  /* Site already uses dark theme, no inversion needed */
}

/* =============================================
   APPLE / iOS SPECIFIC
   ============================================= */
/* Prevent iOS zoom on form focus */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }
}

/* Safe area insets for iPhone notch/Dynamic Island */
.site-header {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.float-booking {
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom));
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.site-footer {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Improve tap targets for iOS */
.btn,
.nav-toggle,
.faq-question,
.social-link {
  min-height: 44px;
  min-width: 44px;
}

/* -webkit-tap-highlight-color for iOS */
a, button, [role="button"] {
  -webkit-tap-highlight-color: rgba(200,169,81,0.15);
}
