*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-border: #e5e7eb;
  /* Circus Tent Colors - Fun & Playful! */
  --color-primary: #4A7BC3;
  --color-primary-dark: #3a6aad;
  --color-primary-soft: #5B8DD6;
  --color-accent: #D84848;
  --color-accent-dark: #C04040;
  --color-accent-light: #E05555;
  --color-cream: #FFF5E6;
  --color-cream-dark: #F5E6D3;
  --color-sky-blue: #5B8DD6;
  --color-sky-light: #A8C8F0;
  /* NEW: Playful accent colors */
  --color-gold: #FFD700;
  --color-gold-soft: #FFE55C;
  --color-purple: #9B59B6;
  --color-orange: #FF6B35;
  --color-green: #2ECC71;
  --color-text: #2d2d2d;
  --color-muted: #6b7280;
  --shadow-soft: 0 18px 40px rgba(74, 123, 195, 0.12);
  --shadow-strong: 0 24px 60px rgba(74, 123, 195, 0.2);
  --shadow-accent: 0 12px 30px rgba(216, 72, 72, 0.25);
  --shadow-gold: 0 8px 20px rgba(255, 215, 0, 0.3);
  --shadow-colorful: 0 10px 30px rgba(155, 89, 182, 0.2);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #4A7BC3 0%, #5B8DD6 50%, #A8C8F0 100%);
  line-height: 1.65;
  position: relative;
  min-height: 100vh;
}

/* BRIGHT, VISIBLE Starry Background with GOLD stars! */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* LARGE bright WHITE stars - highly visible! */
    radial-gradient(circle, white 0%, white 30%, transparent 70%),
    radial-gradient(circle, white 0%, white 30%, transparent 70%),
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 30%, transparent 70%),
    /* LARGE GOLD stars - magical! */
    radial-gradient(circle, #FFD700 0%, #FFD700 30%, transparent 70%),
    radial-gradient(circle, #FFE55C 0%, #FFE55C 30%, transparent 70%),
    /* Medium white stars with glow */
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 40%, transparent 80%),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 40%, transparent 80%),
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 40%, transparent 80%),
    /* Medium GOLD stars */
    radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.8) 40%, transparent 80%),
    radial-gradient(circle, rgba(255, 229, 92, 0.75) 0%, rgba(255, 229, 92, 0.75) 40%, transparent 80%),
    /* Small twinkling white stars */
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%),
    /* Small GOLD sparkles */
    radial-gradient(circle, rgba(255, 215, 0, 0.7) 0%, rgba(255, 215, 0, 0.7) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 229, 92, 0.65) 0%, rgba(255, 229, 92, 0.65) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 215, 0, 0.7) 0%, rgba(255, 215, 0, 0.7) 50%, transparent 100%);
  background-size:
    5px 5px, 5px 5px, 4px 4px, 6px 6px, 5px 5px,
    3px 3px, 3px 3px, 3px 3px, 4px 4px, 3px 3px,
    2px 2px, 2px 2px, 2.5px 2.5px, 2.5px 2.5px, 2px 2px;
  background-position:
    20% 30%, 60% 70%, 80% 10%, 40% 50%, 92% 82%,
    50% 50%, 90% 60%, 33% 80%, 68% 25%, 18% 88%,
    45% 15%, 70% 85%, 28% 58%, 82% 38%, 55% 72%;
  background-repeat: no-repeat;
  opacity: 0.95;
  animation: twinkle 4s ease-in-out infinite;
}

/* Second layer - more white & GOLD stars dancing! */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* Medium white stars */
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 40%, transparent 80%),
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 40%, transparent 80%),
    /* Medium GOLD stars */
    radial-gradient(circle, rgba(255, 215, 0, 0.75) 0%, rgba(255, 215, 0, 0.75) 40%, transparent 80%),
    radial-gradient(circle, rgba(255, 229, 92, 0.7) 0%, rgba(255, 229, 92, 0.7) 40%, transparent 80%),
    /* Small white stars */
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
    /* Small GOLD sparkles */
    radial-gradient(circle, rgba(255, 215, 0, 0.65) 0%, rgba(255, 215, 0, 0.65) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 229, 92, 0.6) 0%, rgba(255, 229, 92, 0.6) 50%, transparent 100%);
  background-size: 3.5px 3.5px, 3px 3px, 4px 4px, 3.5px 3.5px, 2.5px 2.5px, 2px 2px, 2.5px 2.5px, 2px 2px;
  background-position: 15% 20%, 75% 60%, 48% 42%, 95% 28%, 8% 85%, 52% 18%, 64% 78%, 32% 62%;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: twinkle-slow 6s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes twinkle-slow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.85; }
}

/* Ensure all content is above the starry background */
.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

/* SOPHISTICATED CIRCUS TENT STRIPE PATTERNS */

/* Classic red and white diagonal stripes - elegant carnival aesthetic */
.circus-stripe {
  background-image: repeating-linear-gradient(
    45deg,
    var(--color-accent),
    var(--color-accent) 15px,
    #ffffff 15px,
    #ffffff 30px
  );
}

/* Subtle stripe for backgrounds - classy not corny */
.circus-stripe-subtle {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(216, 72, 72, 0.08),
    rgba(216, 72, 72, 0.08) 20px,
    rgba(255, 255, 255, 0.08) 20px,
    rgba(255, 255, 255, 0.08) 40px
  );
}

/* Header bottom accent - refined circus tent border */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0px,
    var(--color-accent) 12px,
    #ffffff 12px,
    #ffffff 24px,
    var(--color-primary) 24px,
    var(--color-primary) 36px,
    #ffffff 36px,
    #ffffff 48px
  );
  opacity: 0.9;
}

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

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

a:hover {
  text-decoration: underline;
}

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

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: auto;
  height: 5rem;
  display: inline-flex;
  align-items: center;
}

.logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
}

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

.main-nav a.is-active {
  color: var(--color-text);
}

.nav-phone a {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(156, 163, 175, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: rgba(74, 123, 195, 0.1);
  border: 2px solid var(--color-primary);
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle:hover {
  background: rgba(74, 123, 195, 0.2);
  transform: scale(1.05);
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background-image:
    linear-gradient(135deg, rgba(74, 123, 195, 0.92), rgba(216, 72, 72, 0.88)),
    url('../img/405473f5c9e8dbc5b538f3522e7c5901--backyard-weddings-tent-backyard-party.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #ffffff;
}

/* Add a subtle pattern overlay for circus tent vibe */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.03) 50px,
    rgba(255, 255, 255, 0.03) 100px
  );
  pointer-events: none;
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3vw + 1.4rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 1);
  max-width: 36rem;
  font-size: 1.15rem;
  line-height: 1.6;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 0.75rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border-color: var(--color-primary-dark);
  box-shadow: 0 18px 40px rgba(43, 123, 195, 0.35);
  transition: all 0.3s ease;
}

.btn.primary:hover {
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(43, 123, 195, 0.45);
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
}

.btn.ghost {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.btn.ghost:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(74, 123, 195, 0.3);
}

.btn.accent {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: #ffffff;
  border-color: var(--color-accent-dark);
  box-shadow: var(--shadow-accent);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(216, 72, 72, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(216, 72, 72, 0.4);
    transform: scale(1.02);
  }
}

.btn.accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn.accent:hover {
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(216, 72, 72, 0.45);
  transform: translateY(-3px) scale(1.05);
}

.btn.accent:hover::before {
  width: 300px;
  height: 300px;
}

.btn.full-width {
  width: 100%;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-highlights li {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-highlights li::before {
  content: "★";
  margin-right: 0.5rem;
  color: #FFD700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 230, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: 0 20px 60px rgba(74, 123, 195, 0.3);
  border: 3px solid rgba(74, 123, 195, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 8px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0px,
    var(--color-accent) 15px,
    #ffffff 15px,
    #ffffff 30px
  );
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--color-text) !important;
  background: none !important;
  -webkit-text-fill-color: var(--color-text) !important;
}

.hero-panel p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.hero-form .field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-muted);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background-color: #f9fafb;
}

.field input:focus,
.field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background-color: #ffffff;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Generic sections */

.section {
  padding: 4rem 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  position: relative;
}

/* Fun wavy dividers between sections */
.section.alt::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  clip-path: ellipse(100% 100% at 50% 100%);
}

.section.alt::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  clip-path: ellipse(100% 100% at 50% 0%);
  z-index: 1;
}

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: 999px;
}

.section-header p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* BOLD SECTION BACKGROUNDS - Make it POP! */

/* Services section - Vibrant BLUE background with stars visible */
#services {
  background: linear-gradient(135deg, rgba(74, 123, 195, 0.85) 0%, rgba(91, 141, 214, 0.85) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

#services .section-header h2,
#services .section-header p,
#services .card h3,
#services .card p {
  color: #ffffff !important;
}

#services .section-header h2 {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

#services .section-header p {
  color: rgba(255, 255, 255, 0.9) !important;
}

#services .section-header h2::after {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
}

/* Gallery section - Bold RED background with stars visible */
#gallery {
  background: linear-gradient(135deg, rgba(216, 72, 72, 0.85) 0%, rgba(224, 85, 85, 0.85) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

#gallery::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 18s ease-in-out infinite reverse;
}

#gallery .section-header h2,
#gallery .section-header p {
  color: #ffffff !important;
}

#gallery .section-header h2 {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

#gallery .section-header p {
  color: rgba(255, 255, 255, 0.95) !important;
}

#gallery .section-header h2::after {
  background: linear-gradient(90deg, var(--color-gold) 0%, #fff 100%);
}

/* Contact CTA section - URGENT RED with stars visible */
.contact-cta {
  background: linear-gradient(135deg, rgba(192, 64, 64, 0.88) 0%, rgba(216, 72, 72, 0.88) 100%);
  color: #ffffff !important;
  padding: 3.5rem 0 !important;
}

.contact-cta h2,
.contact-cta p,
.contact-cta a {
  color: #ffffff !important;
}

.contact-cta h2 {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.contact-cta a:hover {
  color: var(--color-gold) !important;
}

/* Testimonials - Sky Blue Gradient with stars visible */
.testimonials {
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  bottom: -4rem;
  background: linear-gradient(135deg, rgba(168, 200, 240, 0.8) 0%, rgba(91, 141, 214, 0.8) 100%);
  z-index: -1;
}

/* Floating orbs animation */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* PLAYFUL CONFETTI & DECORATIONS */

/* Confetti pieces scattered throughout */
.section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    /* Red confetti */
    linear-gradient(45deg, var(--color-accent) 0%, var(--color-accent) 100%),
    linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-light) 100%),
    /* Blue confetti */
    linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%),
    linear-gradient(180deg, var(--color-sky-blue) 0%, var(--color-sky-blue) 100%),
    /* Gold confetti */
    linear-gradient(45deg, var(--color-gold) 0%, var(--color-gold) 100%),
    linear-gradient(135deg, var(--color-gold-soft) 0%, var(--color-gold-soft) 100%),
    /* Purple confetti */
    linear-gradient(90deg, var(--color-purple) 0%, var(--color-purple) 100%),
    /* Orange confetti */
    linear-gradient(180deg, var(--color-orange) 0%, var(--color-orange) 100%);
  background-size:
    8px 3px, 10px 4px,
    6px 3px, 9px 4px,
    7px 3px, 8px 4px,
    6px 3px, 9px 3px;
  background-position:
    15% 20%, 85% 75%,
    45% 10%, 72% 88%,
    28% 50%, 92% 30%,
    60% 65%, 8% 85%;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  animation: confettiFloat 25s ease-in-out infinite;
}

@keyframes confettiFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Gradient orbs for depth */
.section.alt::after {
  background-image:
    radial-gradient(circle, rgba(74, 123, 195, 0.08) 0%, transparent 70%),
    radial-gradient(circle, rgba(216, 72, 72, 0.08) 0%, transparent 70%),
    radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  background-size: 300px 300px, 250px 250px, 200px 200px;
  background-position: 10% 30%, 80% 60%, 50% 80%;
  background-repeat: no-repeat;
  opacity: 1;
  animation: float 30s ease-in-out infinite;
}

.cards {
  display: grid;
  gap: 1.75rem;
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cards.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 245, 230, 0.3) 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  border: 2px solid rgba(74, 123, 195, 0.15);
  box-shadow: 0 10px 30px rgba(74, 123, 195, 0.08);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  position: relative;
  border-top: 5px solid var(--color-primary);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 50%, var(--color-primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(0.5deg);
  box-shadow: 0 25px 50px rgba(155, 89, 182, 0.3);
  border-color: var(--color-purple);
}

.card:hover::before {
  opacity: 1;
}

/* Rotating colorful top borders on cards */
.cards .card:nth-child(1) {
  border-top-color: var(--color-accent);
}

.cards .card:nth-child(2) {
  border-top-color: var(--color-primary);
}

.cards .card:nth-child(3) {
  border-top-color: var(--color-gold);
}

.cards .card:nth-child(4) {
  border-top-color: var(--color-purple);
}

.cards .card:nth-child(5) {
  border-top-color: var(--color-orange);
}

.cards .card:nth-child(6) {
  border-top-color: var(--color-green);
}

/* Colorful shadows on hover */
.cards .card:nth-child(1):hover {
  box-shadow: 0 25px 50px rgba(216, 72, 72, 0.3);
}

.cards .card:nth-child(2):hover {
  box-shadow: 0 25px 50px rgba(74, 123, 195, 0.3);
}

.cards .card:nth-child(3):hover {
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.35);
}

.cards .card:nth-child(4):hover {
  box-shadow: 0 25px 50px rgba(155, 89, 182, 0.3);
}

.cards .card:nth-child(5):hover {
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.cards .card:nth-child(6):hover {
  box-shadow: 0 25px 50px rgba(46, 204, 113, 0.3);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Image Cards */
.card-with-image {
  padding: 0;
  position: relative;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-content {
  padding: 1.4rem 1.35rem;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.card-with-image:hover .card-overlay {
  opacity: 1;
}

.mini-card .mini-list {
  list-style: disc;
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.package-guests {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0.25rem 0 0.4rem;
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero */

.page-hero {
  padding: 3.2rem 0 2.7rem;
  background:
    radial-gradient(circle at top left, rgba(224, 178, 76, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.14), transparent 55%);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.phone-inline {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* Packages page */

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.package-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(43, 123, 195, 0.2);
  border-color: var(--color-primary);
}

.package-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 1.5rem 1.5rem 1.4rem;
}

.package-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.package-list {
  margin: 0.6rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.package-list li {
  margin-bottom: 0.2rem;
}

.package-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Inventory */

.inventory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.inventory-group h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.inventory-list {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.inventory-list li + li {
  margin-top: 0.25rem;
}

.inventory-note {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Testimonials */

.testimonials .cards {
  align-items: stretch;
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.testimonial blockquote {
  margin: 0;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.2rem 1.25rem;
  position: relative;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.testimonial blockquote::before {
  content: "“";
  position: absolute;
  font-size: 2.4rem;
  line-height: 1;
  top: -0.6rem;
  left: 0.9rem;
  color: rgba(148, 163, 184, 0.45);
}

.testimonial p {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  color: var(--color-primary-soft);
}

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

/* Contact CTA */

.contact-cta {
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
}

.contact-cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
}

.contact-cta h2 {
  margin: 0 0 0.4rem;
}

.contact-cta p {
  margin: 0;
  color: #e5e7eb;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-link {
  font-weight: 600;
  font-size: 0.98rem;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Photo Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(43, 123, 195, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* FAQ Section */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  line-height: 1.7;
}

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

/* Contact page layout */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.contact-info h2 {
  margin: 0 0 0.4rem;
}

.contact-line {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-list {
  list-style: disc;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-form-wrapper {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.contact-form-wrapper h2 {
  margin: 0 0 0.6rem;
}

.contact-form .field:last-of-type {
  margin-bottom: 1rem;
}

/* Newsletter */

.newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.newsletter p {
  margin: 0.2rem 0 0;
  color: var(--color-muted);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.newsletter-form input[type="email"] {
  min-width: 220px;
}

.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;
}

/* Footer */

.site-footer {
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0px,
    var(--color-accent) 12px,
    #ffffff 12px,
    #ffffff 24px,
    var(--color-primary) 24px,
    var(--color-primary) 36px,
    #ffffff 36px,
    #ffffff 48px
  ) 4;
  background-color: #f9fafb;
}

.footer-inner {
  padding: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0 0 0.1rem;
  font-weight: 600;
}

.footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.25rem;
  }

  .logo-mark {
    height: 3.5rem;
  }

  .hero {
    min-height: 100vh;
    padding: 4rem 0 3rem;
    background-attachment: scroll;
  }

  .hero::after {
    display: none;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-origin: top;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    gap: 0.5rem;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background-color: rgba(43, 123, 195, 0.1);
    color: var(--color-primary);
  }

  .main-nav.nav-open {
    max-height: 400px;
  }

  .nav-phone {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(229, 231, 235, 0.6);
  }

  .nav-phone a {
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: rgba(43, 123, 195, 0.05);
    text-align: center;
  }

  .nav-phone a:hover {
    background-color: var(--color-primary);
    color: white;
  }

  .nav-toggle {
    display: flex !important;
    padding: 0.7rem 0.8rem;
    background: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(74, 123, 195, 0.2);
  }

  .nav-toggle-bar {
    width: 28px;
    height: 3.5px;
    background-color: var(--color-primary);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    justify-content: stretch;
  }

  .hero-panel {
    margin-top: 0.75rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .page-hero {
    padding: 2.6rem 0 2.3rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.9rem 1rem;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}
