/* ── SEAUX JUICY SNOBALLS MASTER DESIGN SYSTEM ── */
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  /* Mardi Gras & NOLA Theme Colors */
  --purple: #6B1FA3;
  --purple-light: #8E32D0;
  --purple-dark: #4A1275;
  --gold: #E8B800;
  --gold-bright: #FFD214;
  --gold-light: #FFF8EA;
  --green: #2A9D2A;
  --green-light: rgba(42, 157, 42, 0.12);
  --pink: #E0189C;
  --pink-light: rgba(224, 24, 156, 0.12);
  
  /* Background Palette */
  --deep: #0D0018; /* Deep purple-black */
  --deep-purple: #1B072E; /* Alternating plum-dark */
  --cream: #FFFDF9; /* Warm cream background */
  --cream-dark: #F4EAD1;
  --white: #FFFFFF;
  
  /* Text Color Palette */
  --text-dark: #2A004C;
  --text-light: #FFF1D0;
  --text-muted: rgba(255, 255, 255, 0.6);
  
  /* Elevation Shadows & Transitions */
  --shadow: rgba(13, 0, 24, 0.3);
  --shadow-hover: rgba(13, 0, 24, 0.45);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Typography Scale */
  --font-display: 'Lilita One', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* ── 1. GLOBAL BASE RESETS ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

section {
  padding: 100px 48px;
  position: relative;
}

/* Subpage Main Content Offset for Fixed Header */
main.page-content {
  padding-top: 90px;
  min-height: calc(100vh - 90px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: normal;
  letter-spacing: 0.03em;
}

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

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

/* ── 2. GENERAL UTILITY STYLES ── */
.bead-line {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--purple) 0px, var(--purple) 10px,
    var(--gold) 10px, var(--gold) 20px,
    var(--green) 20px, var(--green) 30px,
    var(--pink) 30px, var(--pink) 40px
  );
  width: 100%;
  border-radius: 3px;
}

.bg-dark {
  background-color: var(--deep);
  color: var(--white);
}

.bg-alt-dark {
  background-color: var(--deep-purple);
  color: var(--white);
}

.bg-light {
  background-color: var(--cream);
  color: var(--text-dark);
}

/* Section Header Style Blocks */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .section-label {
  font-family: var(--font-display);
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.bg-dark .section-header h2, .bg-alt-dark .section-header h2 {
  color: var(--white);
}

.bg-light .section-header h2 {
  color: var(--purple-dark);
}

.section-header h2 span {
  color: var(--gold);
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 80%;
  margin-top: 6px;
}

/* ── 3. BUTTON COMPONENTS ── */
.btn-gold {
  background: var(--gold);
  color: var(--deep) !important;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 3px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 184, 0, 0.3);
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 184, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 3px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: scale(1.05) translateY(-3px);
}

.bg-light .btn-outline {
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}

.bg-light .btn-outline:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ── 4. STICKY DYNAMIC NAVIGATION HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 90px;
  background: rgba(13, 0, 24, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: transform 0.3s ease, background 0.3s ease;
}

header.nav-hidden {
  transform: translateY(-100%);
}

.logo-container img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

nav a:hover, nav a.active {
  color: var(--gold-bright);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--pink);
  transition: width 0.25s ease;
  border-radius: 2px;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* Mobile Hamburger Trigger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ── 5. HOME PAGE & HERO STYLINGS ── */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(13, 0, 24, 0.88), rgba(27, 7, 46, 0.85)), url('../images/snoballs_hero_background.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  max-width: 850px;
  padding: 40px 24px;
  z-index: 2;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 0, 0.12);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 12px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  display: block;
  color: var(--gold-bright);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--pink);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Trust Bar Banner */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 7, 46, 0.94);
  border-top: 3px solid var(--purple);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  z-index: 3;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
}

.trust-divider {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

/* ── 6. DYNAMIC SCROLL REVEAL OBSERVER ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── 7. TEASER COMPONENT SECTIONS ── */
.teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.teaser-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  border: 5px solid var(--white);
}

.bg-dark .teaser-image, .bg-alt-dark .teaser-image {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-light .teaser-image {
  border-color: var(--purple-dark);
}

.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.teaser-text p {
  font-size: 1.1rem;
  line-height: 1.85;
}

.bg-light .teaser-text p {
  color: rgba(42, 0, 76, 0.85);
}

.bg-light .teaser-text strong {
  color: var(--purple-dark);
  font-weight: 800;
}

.bg-dark .teaser-text p, .bg-alt-dark .teaser-text p {
  color: rgba(255, 255, 255, 0.85);
}

.bg-dark .teaser-text strong, .bg-alt-dark .teaser-text strong {
  color: var(--gold-bright);
}

.teaser-text .btn-gold, .teaser-text .btn-outline {
  align-self: flex-start;
  margin-top: 10px;
}

/* Featured Teaser Cards List (For flavors and testimonials teasers) */
.featured-teasers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* ── 8. ABOUT US SUBPAGE DETAILS ── */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-polaroid-frame {
  position: relative;
  background-color: var(--white);
  padding: 20px 20px 72px;
  box-shadow: 0 15px 40px var(--shadow);
  border-radius: 8px;
  border: 4px solid var(--gold);
  transform: rotate(-2deg);
  transition: var(--transition);
  max-width: 480px;
  margin: 0 auto;
}

.about-polaroid-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-polaroid-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 4px;
}

.about-polaroid-frame .caption {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(107, 31, 163, 0.06);
  border: 2px solid rgba(107, 31, 163, 0.12);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(107, 31, 163, 0.1);
  border-color: var(--purple);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--purple-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(42, 0, 76, 0.6);
  margin-top: 8px;
}

/* ── 9. EVENTS / OCCASIONS PAGE GRID ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--deep-purple);
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--pink);
}

.event-card:nth-child(4n+1)::before { background: var(--pink); }
.event-card:nth-child(4n+2)::before { background: var(--gold); }
.event-card:nth-child(4n+3)::before { background: var(--green); }
.event-card:nth-child(4n+4)::before { background: var(--purple); }

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(107, 31, 163, 0.35);
}

.event-emoji {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.event-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--gold-bright);
}

.event-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ── 10. FLAVORS MENU STYLES ── */
.flavors-content {
  max-width: 1000px;
  margin: 0 auto;
}

.flavors-group {
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 6px 20px var(--shadow);
}

.bg-light .flavors-group {
  background: var(--white);
  border-color: var(--cream-dark);
}

.flavors-group-title {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flavors-group-title span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.flavors-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fpill {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
  cursor: default;
  border: 2px solid transparent;
}

.fpill:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Color Palette Pillars */
.pill-pink {
  background: var(--pink-light);
  border-color: rgba(224, 24, 156, 0.3);
  color: var(--pink);
}
.pill-pink:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(224, 24, 156, 0.3);
}

.pill-gold {
  background: rgba(232, 184, 0, 0.12);
  border-color: rgba(232, 184, 0, 0.35);
  color: #b58d00;
}
.pill-gold:hover {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 6px 15px rgba(232, 184, 0, 0.3);
}

.pill-purple {
  background: rgba(107, 31, 163, 0.12);
  border-color: rgba(107, 31, 163, 0.3);
  color: var(--purple);
}
.pill-purple:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(107, 31, 163, 0.3);
}

.pill-green {
  background: var(--green-light);
  border-color: rgba(42, 157, 42, 0.3);
  color: var(--green);
}
.pill-green:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(42, 157, 42, 0.3);
}

.pill-cream {
  background: rgba(244, 234, 209, 0.5);
  border-color: rgba(42, 0, 76, 0.18);
  color: var(--purple-dark);
}
.pill-cream:hover {
  background: var(--cream-dark);
  color: var(--purple-dark);
  box-shadow: 0 6px 15px rgba(42, 0, 76, 0.15);
}

.flavors-note {
  text-align: center;
  margin-top: 48px;
  background: rgba(232, 184, 0, 0.08);
  border: 3px dashed var(--gold);
  border-radius: 20px;
  padding: 28px;
  font-size: 1.25rem;
  color: var(--purple-dark);
  font-family: var(--font-display);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ── 11. TESTIMONIAL PAGE & REVIEW CARDS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--deep-purple);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 0, 0.2);
}

/* Video Containers */
.testimonial-video-container {
  width: 100%;
  height: 250px;
  position: relative;
  background: #000;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.testimonial-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--gold-bright);
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
}

.testimonial-quote::before {
  content: '"';
  color: var(--pink);
  font-size: 2.2rem;
  line-height: 1;
  font-family: var(--font-display);
  margin-right: 6px;
}

.testimonial-author {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* ── 12. GALLERY PAGE MASONRY & LIGHTBOX ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 31, 163, 0.85); /* Purplish filter */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay span {
  color: var(--gold-bright);
  font-size: 3.5rem;
  transform: scale(0.6);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 10px 30px var(--shadow);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: scale(1) rotate(360deg);
}

/* Lightbox Modal CSS Overlay */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border: 5px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: -56px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: var(--transition-fast);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 4rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-prev { left: -72px; }
.lightbox-next { right: -72px; }

.lightbox-nav:hover, .lightbox-close:hover {
  color: var(--gold-bright);
  transform: scale(1.1);
}

/* ── 13. BOOKING SECTION, AUDIO PLAYER, & FORMS ── */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-info h3 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--gold-bright);
}

.booking-info p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-item-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 24px;
  transition: var(--transition);
}

.contact-item-card:hover {
  border-color: var(--gold);
  background: rgba(232, 184, 0, 0.04);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 184, 0, 0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
}

.contact-card-value a {
  color: var(--gold-bright);
}

.social-btn-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.social-follow-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.social-follow-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(232, 184, 0, 0.08);
  transform: translateY(-2.5px);
}

/* Custom Styled MP3 Waveform Theme Player */
.jingle-player {
  background: linear-gradient(135deg, var(--purple-dark), var(--deep));
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.jingle-player-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jingle-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.jingle-btn {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
  outline: none;
}

.jingle-btn:hover {
  background: var(--gold-bright);
  transform: scale(1.06);
}

.jingle-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--deep);
}

.jingle-progress-bar-container {
  flex-grow: 1;
}

.jingle-progress-rail {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.jingle-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--pink);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.jingle-time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* Booking Form Panel Styling */
.booking-form-panel {
  background: rgba(255, 255, 255, 0.025);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.booking-form-header {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.fgroup {
  margin-bottom: 20px;
}

.fgroup label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.fgroup select option {
  background: var(--deep-purple);
  color: var(--white);
}

.fgroup textarea {
  resize: vertical;
  min-height: 110px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 184, 0, 0.3);
  transition: var(--transition);
  margin-top: 10px;
}

.form-btn-submit:hover {
  background: var(--gold-bright);
  transform: translateY(-3.5px);
  box-shadow: 0 6px 20px rgba(232, 184, 0, 0.5);
}

/* ── 14. EXCLUSIVE POPUP OFFER MODAL ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--deep-purple);
  border: 5px solid var(--gold);
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.popup-overlay.show .popup {
  transform: scale(1);
}

.popup-x {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
}

.popup-x:hover {
  color: var(--gold-bright);
}

.popup-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.popup-title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--gold-bright);
}

.popup-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.popup-code {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 3px dashed var(--gold);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 24px;
}

/* ── 15. STANDARD COMPREHENSIVE FOOTER ── */
footer {
  background: #06000c;
  padding: 80px 48px 36px;
  border-top: 4px solid var(--purple);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 72px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 18px;
}

.footer-col h5 {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--pink);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── 16. LAYOUT RESPONSIVE BREAKPOINTS (MEDIA QUERIES) ── */
@media (max-width: 992px) {
  header {
    padding: 0 24px;
  }
  
  section {
    padding: 80px 24px;
  }

  .teaser-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-polaroid-frame {
    transform: none !important;
  }

  .booking-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: calc(100vh - 90px);
    background: var(--deep);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 48px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9998;
    border-bottom: 4px solid var(--purple);
  }

  nav.active {
    transform: translateY(0);
  }

  nav a {
    font-size: 1.4rem;
  }
  
  nav a::after {
    display: none;
  }

  .hero-content {
    padding: 20px 0;
  }

  .trust-bar {
    position: relative;
    margin-top: 40px;
    background: rgba(27, 7, 46, 0.98);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .lightbox-content img {
    border-width: 3px;
  }
  
  .frow {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .booking-form-panel {
    padding: 24px;
  }

  .jingle-controls {
    flex-direction: column;
    gap: 12px;
  }

  .jingle-progress-bar-container {
    width: 100%;
  }
}