/* High-contrast neon section titles */
.section-title-container { position: relative; z-index: 4; }
/* Global text contrast adjustments */
body { color: #F3F0FF; }
p, li, .about-description p, .contact-details .contact-value { color: #F1ECFF; text-shadow: 0 1px 2px rgba(0,0,0,0.45); }
/* Section descriptions - pink with yellow glow */
.section-description { 
  color: var(--text-pink); 
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 0 15px var(--star-yellow); 
  font-weight: 600;
}
.neon-pink-title {
  position: relative;
  z-index: 4;
  color: var(--text-pink);
  /* subtle outline for readability over busy backgrounds */
  -webkit-text-stroke: 1px rgba(0,0,0,0.25);
  text-shadow:
    0 2px 6px rgba(0,0,0,0.45),             /* dark lift */
    0 0 15px rgba(255,101,193,0.9),         /* bright neon core */
    0 0 30px rgba(255,101,193,0.6),         /* bright neon outer */
    0 0 45px rgba(255,101,193,0.3);         /* extended glow */
}
/* Ensure site content sits above decorative background */
.background-elements {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* never block interactions */
}
.floating-elements-container,
.clouds-container,
.swiggles-container,
.stars-container {
  position: absolute;
  inset: 0;
}
.floating-overlay {
  position: fixed;
  inset: 0;
  z-index: 1; /* above section backgrounds, below content */
  pointer-events: none;
}
.floating-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  /* vertical ombre: more visible at top, fades toward bottom */
  background: linear-gradient(
    to bottom,
    rgba(195, 154, 255, 0.14) 0%,    /* soft lavender glow */
    rgba(255, 101, 193, 0.10) 20%,   /* neon pink tint */
    rgba(255, 101, 193, 0.06) 45%,
    rgba(255, 101, 193, 0.03) 65%,
    rgba(255, 101, 193, 0.00) 100%
  );
  pointer-events: none;
}
.main-content { position: relative; z-index: 2; }
.gallery-section { position: relative; z-index: 3; }
.gallery-section { isolation: isolate; }
.gallery-section .gallery-carousel-container { overflow: visible; position: relative; z-index: 1; }
.gallery-section .gallery-swiper { overflow: visible; }

/* Gallery: portrait, centered, safe 3D hover */
.gallery-section .gallery-carousel-container .swiper-slide {
  overflow: visible; /* don't clip the card's border on perspective */
  padding-inline: 6px; /* tighter gutter for funky, compact look */
}

/* Flat carousel: no vertical stagger/bob */
.gallery-section .gallery-swiper .swiper-wrapper { align-items: center; }
.gallery-section .swiper-slide { transform: none; animation: none; }

.gallery-section .gallery-card {
  width: min(85vw, 380px); /* Reduced width for better mobile fit */
  max-width: 380px; /* Hard limit to prevent overflow */
  aspect-ratio: 9 / 16; /* taller than wide (more iPhone portrait) */
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  transition: transform 280ms ease, box-shadow 280ms ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  /* Glow border feature */
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
              linear-gradient(45deg, var(--text-pink), var(--deep-orange)) border-box;
}

/* Edge-hugging glow that follows the card/image exactly */
.gallery-section .gallery-card::before,
.gallery-section .gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.gallery-section .gallery-card::before { /* inner glow */
  box-shadow: inset 0 0 26px rgba(255, 101, 193, 0.25), inset 0 0 18px rgba(250, 131, 20, 0.18);
}
.gallery-section .gallery-card::after { /* soft outer aura */
  background: radial-gradient(closest-side, rgba(255,101,193,0.15), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.gallery-section .gallery-card .card-tilt {
  position: absolute;
  inset: 0; /* fill card exactly so image aligns with border */
  padding: 0; /* no inner gap; image sits flush with gradient border */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 300ms ease;
  /* keep inner slightly within border so perspective doesn't clip edges */
  transform: scale(0.998);
}
.gallery-section .gallery-card .card-tilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* no inner radius so it perfectly aligns with the card border via overflow */
  border-radius: 0;
}

/* No angles: keep inner image flat */
.gallery-section .card-tilt { transform: none !important; }
.gallery-section .swiper-slide:hover .card-tilt { transform: none !important; }

/* Dim non-active slides; highlight center */
.gallery-section .swiper-slide { filter: brightness(0.7) saturate(0.9); transition: filter 200ms ease, transform 200ms ease; }
.gallery-section .swiper-slide-active { filter: brightness(1) saturate(1); }

/* Strong glow on hover of the focused card */
.gallery-section .swiper-slide:hover .gallery-card {
  box-shadow: 0 0 12px rgba(255, 101, 193, 0.55), 0 0 22px rgba(250, 131, 20, 0.35), 0 8px 30px rgba(0,0,0,0.35);
}

.gallery-section .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill without squish */
  object-position: center center; /* centered subject */
  display: block;
}

.book-section .solo-tarot {
  display: grid;
  place-items: center;
  gap: 1.25rem;
}
.book-section .tarot-wrap {
  width: min(90vw, 520px);
  /* slightly taller/narrower to crop a bit more on left/right */
  aspect-ratio: 9.9 / 16.6;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent; /* slightly thicker border */
  background: linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
              linear-gradient(45deg, var(--text-pink), var(--deep-orange)) border-box;
  /* neon pink glow */
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 0 18px rgba(255, 101, 193, 0.55),
    0 0 36px rgba(255, 101, 193, 0.35);
}
.book-section .tarot-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(255,101,193,0.45), rgba(255,101,193,0) 70%);
  filter: blur(12px);
  z-index: -1;
}
.book-section .tarot-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop a bit for edge-to-edge fill */
  background: var(--bg-base, #0b0b0f);
  display: block;
}
.book-section .contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.book-section .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 9999px;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
              linear-gradient(90deg, var(--text-pink), var(--deep-orange)) border-box;
  color: var(--text-primary, #fff);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(14px, 2.5vw, 18px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25), 0 0 16px rgba(255,101,193,0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.book-section .contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3), 0 0 22px rgba(255,101,193,0.4), 0 0 30px rgba(250,131,20,0.25);
}
.book-section .pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--text-pink), transparent),
              conic-gradient(from 0deg, var(--text-pink), var(--deep-orange));
  flex: 0 0 22px;
  filter: drop-shadow(0 0 6px rgba(255,101,193,0.4));
}
.book-section .contact-pill--ig .pill-icon {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='5' ry='5' stroke='white' fill='none'/><path d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z' stroke='white' fill='none'/><line x1='17.5' y1='6.5' x2='17.5' y2='6.5' stroke='white' /></svg>") center/18px 18px no-repeat;
  background-color: rgba(255,101,193,0.25);
  filter: drop-shadow(0 0 6px rgba(255,101,193,0.6));
}
.book-section .contact-pill--mail .pill-icon {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z'/><path d='m22 8-10 6L2 8'/></svg>") center/18px 18px no-repeat;
  background-color: rgba(195,154,255,0.25);
  filter: drop-shadow(0 0 6px rgba(195,154,255,0.6));
}
.book-section .contact-pill--ig .pill-text { color: #fff; }
.book-section .contact-pill--mail .pill-text { color: #fff; }

/* Neutralize outer hover transform so only inner tilt animates */
.gallery-section .gallery-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.35); }

@media (max-width: 640px) {
  .gallery-section {
    padding: 2rem 0 6rem;
  }
  
  .gallery-section .gallery-card {
    width: min(85vw, 320px);
    max-width: 320px;
    border-radius: 20px;
  }
  
  .gallery-section .swiper-slide {
    padding-inline: 3px; /* Tighter spacing on smaller screens */
  }
  
  .gallery-carousel-container {
    padding: 0 0.5rem;
  }
}
/* CSS Variables */
:root {
  --bg-base: #1a1a2e;
  --warm-pink: #ff65c1;
  --accent-rose-2: #e7beb8;
  --violet-gray: #9ca3af;
  --text-pink: #ff65c1;
  --soft-pink: #ffb3d9; /* Softer pink for section titles */
  --neon-purple: #c39aff; /* Purple for section titles */
  --salmon: #fa8072; /* Salmon color for clouds */
  --deep-orange: #fa8314;
  --deep-plum: #6b46c1;
  --star-yellow: #fbbf24;
  --neon-blue: #9AE6FF;
  
  /* Font Variables */
  --font-fredoka: 'Montserrat', sans-serif;
  --font-bungee-shade: 'Montserrat', sans-serif;
  --font-coiny: 'Montserrat', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-fredoka);
  background: linear-gradient(180deg, 
    #1a1a2e 0%,     /* Dark navy at top */
    #2d1b3d 25%,    /* Dark purple */
    #3d2a4f 50%,    /* Medium purple */
    #2d1b3d 75%,    /* Back to dark purple */
    #1a1a2e 100%    /* Dark navy at bottom */
  );
  background-attachment: fixed;
  min-height: 100vh;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--text-pink);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-orange);
}

/* Font Classes */
.coiny-heading {
  font-family: var(--font-coiny);
  font-weight: 400;
}

.coiny-big-text {
  font-family: var(--font-coiny);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Glow Effects */
.glow-text {
  text-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    0 0 20px currentColor;
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 
      0 0 5px currentColor,
      0 0 10px currentColor,
      0 0 15px currentColor,
      0 0 20px currentColor;
  }
  to {
    text-shadow: 
      0 0 10px currentColor,
      0 0 20px currentColor,
      0 0 30px currentColor,
      0 0 40px currentColor;
  }
}

/* Neon Pink Section Title Glow */
.neon-pink-title {
  font-family: var(--font-bungee-shade);
  font-size: 3rem;
  color: var(--neon-purple);
  text-shadow: 
    0 0 10px var(--neon-purple),
    0 0 20px var(--neon-purple),
    0 0 30px var(--neon-purple);
  animation: pulse-glow-purple 2s ease-in-out infinite alternate;
  text-align: center;
  margin-bottom: 2rem;
}

@keyframes pulse-glow-purple {
  from {
    text-shadow: 
      0 0 5px var(--neon-purple),
      0 0 10px var(--neon-purple),
      0 0 20px var(--neon-purple),
      0 0 40px var(--neon-purple),
      0 0 80px var(--neon-purple);
  }
  to {
    text-shadow: 
      0 0 2px var(--neon-purple),
      0 0 5px var(--neon-purple),
      0 0 10px var(--neon-purple),
      0 0 20px var(--neon-purple),
      0 0 40px var(--neon-purple);
  }
}

@keyframes pulse-glow {
  from {
    text-shadow: 
      0 0 5px var(--soft-pink),
      0 0 10px var(--soft-pink),
      0 0 20px var(--soft-pink),
      0 0 40px var(--soft-pink),
      0 0 80px var(--soft-pink);
  }
  to {
    text-shadow: 
      0 0 2px var(--soft-pink),
      0 0 5px var(--soft-pink),
      0 0 10px var(--soft-pink),
      0 0 20px var(--soft-pink),
      0 0 40px var(--soft-pink);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 101, 193, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.footer {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 3rem;
  width: auto;
}

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

.nav-link {
  color: var(--neon-purple) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 0 8px rgba(195,154,255,0.3);
}

.nav-link:hover {
  color: var(--text-pink) !important;
  text-shadow: 0 0 12px rgba(255,101,193,0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-pink);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-pink);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--neon-purple) !important;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 0 8px rgba(195,154,255,0.3);
}

.mobile-nav-link:hover {
  color: var(--text-pink) !important;
  text-shadow: 0 0 12px rgba(255,101,193,0.5);
}

/* Background Elements */
.background-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-elements-container,
.clouds-container,
.swiggles-container,
.stars-container {
  position: absolute;
  inset: 0;
}

.floating-element {
  position: absolute;
  animation: float 8s ease-in-out infinite;
  opacity: 0.7;
  z-index: -1;
}

.floating-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-30px) translateX(-20px) rotate(0deg) scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: translateY(30px) translateX(20px) rotate(180deg) scale(1.2);
    opacity: 0.6;
  }
}

.cloud {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, #FF65C1 0%, #E7BEB8 40%, transparent 70%);
  animation: cloud-float 20s ease-in-out infinite;
}

@keyframes cloud-float {
  0%, 100% {
    transform: translateX(-40px) translateY(-20px) scale(0.8);
  }
  50% {
    transform: translateX(40px) translateY(20px) scale(1.1);
  }
}

.swiggle {
  position: absolute;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF65C1, #E7BEB8, transparent);
  border-radius: 50px;
  animation: swiggle-move 8s ease-in-out infinite;
}

@keyframes swiggle-move {
  0%, 100% {
    transform: scaleX(0.5) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scaleX(1.5) rotate(180deg);
    opacity: 0.8;
  }
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--star-yellow);
  border-radius: 50%;
  animation: star-twinkle 4s ease-in-out infinite;
}

.star::before,
.star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--star-yellow);
  transform: translate(-50%, -50%);
}

.star::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes star-twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.5) rotate(180deg);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: transparent;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
}

.hero-logo {
  margin-bottom: 3rem;
  animation: logo-glow 3s ease-in-out infinite;
}

.hero-logo-img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 20px var(--text-pink));
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 101, 193, 0.6));
}

.logo-img-big {
  max-width: 600px;
  width: 80vw;
  height: auto;
  filter: drop-shadow(0 0 30px var(--soft-pink));
  animation: float 6s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(255, 101, 193, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(255, 101, 193, 0.9));
    transform: scale(1.03);
  }
}

.hero-tagline {
  margin-bottom: 5rem;
}

.hero-title {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: var(--text-pink);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.tagline-part {
  display: inline-block;
  margin: 0 0.5rem;
  animation: tagline-fade 2s ease-in-out infinite;
}

.tagline-separator {
  margin: 0 1.5rem;
  color: var(--star-yellow);
}

.hero-emoji {
  margin-left: 1rem;
  font-size: 1.5em;
}

@keyframes tagline-fade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--text-pink);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-pink);
  border-bottom: 2px solid var(--text-pink);
  transform: rotate(45deg);
}

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

body {
  cursor: url('./public/assets/floating elements/yellowpinkdaisy.svg') 16 16, auto;
}

a, button, .video-card, .gallery-card, .show-item, .glow-button {
  cursor: url('./public/assets/floating elements/yellowpinkdaisy.svg') 16 16, pointer;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--neon-pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

/* Buttons */
.glow-button {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-coiny);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.glow-button.primary {
  background: var(--deep-orange);
  color: white;
  box-shadow: 0 0 20px rgba(250, 131, 20, 0.4);
}

.glow-button.primary:hover {
  box-shadow: 0 0 40px rgba(250, 131, 20, 0.8);
  transform: translateY(-2px) scale(1.05);
}

.glow-button.secondary {
  background: var(--text-pink);
  color: white;
  box-shadow: 0 0 20px rgba(255, 101, 193, 0.4);
}

.glow-button.secondary:hover {
  box-shadow: 0 0 40px rgba(255, 101, 193, 0.8);
  transform: translateY(-2px) scale(1.05);
}

.glow-button.full-width {
  width: 100%;
}

.button-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.glow-button:hover .button-shine {
  transform: translateX(100%);
}

.button-text {
  position: relative;
  z-index: 10;
}

/* Sections */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 8rem; /* reduced top padding from 8rem to 3rem */
}

.section-title-container {
  text-align: center;
  margin-bottom: 6rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--neon-purple) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 8px rgba(195,154,255,0.4) !important;
  font-weight: 500 !important;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video Section - Continuous Scrolling Carousel */
.video-section {
  background: transparent;
  padding: 3rem 0 8rem; /* reduced top padding */
  overflow: hidden;
}

.video-carousel-container {
  max-width: 1600px; /* wider for bigger videos */
  margin: 0 auto;
  padding: 3rem 2rem; /* more padding for impact */
  /* keep container clean so only cards have borders/glow */
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.video-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 20px 0;
}

.video-carousel {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* Video item hover effect - IMMERSIVE! */
.video-item:hover {
  transform: scale(1.08); /* bigger hover scale for impact */
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255,101,193,0.3);
}

.video-item {
  flex: 0 0 auto;
  width: 380px;
  height: 720px; /* reduced from 920px */
  margin: 0 16px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}

.video-item.video-active,
.video-item:hover {
  border: 3px solid var(--neon-purple);
  box-shadow: 0 0 24px rgba(195, 154, 255, 0.55), 0 8px 28px rgba(0,0,0,0.35);
  transform: scale(1.06);
}

.video-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, var(--text-pink), var(--neon-blue), var(--deep-plum));
  z-index: -1;
  opacity: 0.7;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px; /* match card radius so border looks clean */
}

.video-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 15px 15px;
}

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

.video-title {
  font-family: var(--font-coiny);
  font-size: 1.1rem;
  color: var(--deep-plum);
  text-shadow: 0 0 6px rgba(107, 70, 193, 0.55);
  margin-bottom: 0.8rem;
  text-align: center;
}

.video-controls {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--violet-gray);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.control-btn:hover {
  background: var(--text-pink);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-310px * 5)); /* Adjust based on video count */
  }
}

/* About Section */
.about-section {
  padding: 3rem 0 8rem; /* reduced top padding */
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

.about-portrait {
  position: relative;
}

.portrait-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 0 18px rgba(255, 101, 193, 0.25), 0 8px 28px rgba(0,0,0,0.35);
}

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

.portrait-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(45deg, var(--text-pink), var(--deep-orange), var(--text-pink));
  border-radius: 30px;
  z-index: -1;
  opacity: 0.4;
  animation: portrait-glow 3s ease-in-out infinite alternate;
}

@keyframes portrait-glow {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 0.6; transform: scale(1.05); }
}

.about-name {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--deep-plum);
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 10px rgba(255, 101, 193, 0.35);
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--violet-gray);
}

.about-description p {
  margin-bottom: 1.5rem;
}

/* Shows Section */
.shows-section {
  padding: 3rem 0 8rem; /* reduced top padding */
  position: relative;
  overflow: hidden;
  background: transparent;
}

.shows-container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 4rem;
  position: relative;
}

.show-item {
  cursor: pointer;
  position: relative;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  animation: show-float 6s ease-in-out infinite;
}

.show-item:hover {
  transform: scale(1.25);
  z-index: 10;
}

.show-name {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-pink);
  text-shadow: 0 0 8px rgba(255,101,193,0.4);
  margin-bottom: 0.5rem;
}

.show-location {
  font-size: 0.8rem;
  opacity: 0.8;
  color: var(--neon-purple);
  text-align: center;
  font-weight: 400;
  text-shadow: 0 0 6px rgba(195,154,255,0.3);
}

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

/* Salmon Clouds */
.cloud {
  position: absolute;
  animation: drift 30s linear infinite;
  z-index: -1;
}

.salmon-cloud {
  background: radial-gradient(ellipse, rgba(250, 128, 114, 0.3), rgba(250, 128, 114, 0.1));
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0 0 20px rgba(250, 128, 114, 0.2);
}

@keyframes drift {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

/* Gallery Section */
.gallery-section {
  padding: 3rem 0 8rem; /* reduced top padding */
  overflow: hidden; /* prevent horizontal overflow */
}

.gallery-carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.gallery-swiper {
  padding: 2rem 0;
  max-width: 100%;
  overflow: hidden;
}

.gallery-card {
  /* Unify with gallery-section styles so aspect ratio and glow work */
  width: min(90vw, 420px);
  aspect-ratio: 9/16;
  margin: 0 auto;
  border-radius: 24px; /* match card radius used for glow border */
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease;
  /* Gradient glow border */
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
              linear-gradient(45deg, var(--text-pink), var(--deep-orange)) border-box;
}

.gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(195, 154, 255, 0.5);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px; /* Match the container border-radius exactly for perfect oval */
}

/* Book Section */
.book-section {
  padding: 3rem 0 8rem; /* reduced top padding */
}

.book-content {
  max-width: 1000px;
  margin: 0 auto;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.booking-form-container {
  position: relative;
}

.booking-form {
  background: rgba(26, 26, 46, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 101, 193, 0.2);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-pink);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 101, 193, 0.3);
  border-radius: 10px;
  background: rgba(26, 26, 46, 0.5);
  color: white;
  font-family: var(--font-fredoka);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-pink);
  box-shadow: 0 0 10px rgba(255, 101, 193, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  color: #22c55e;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-coiny);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info {
  background: rgba(26, 26, 46, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 101, 193, 0.2);
  backdrop-filter: blur(10px);
}

.contact-title {
  font-size: 1.5rem;
  color: var(--text-pink);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 101, 193, 0.1);
  text-decoration: none;
  color: var(--violet-gray);
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(255, 101, 193, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.5rem;
}

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

.contact-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.contact-value {
  font-weight: 500;
  color: var(--text-pink);
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.95);
  border-top: 1px solid rgba(255, 101, 193, 0.2);
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
}

.footer-text {
  text-align: center;
  color: var(--violet-gray);
  position: relative;
  z-index: 10;
}

.footer-tagline {
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.social-link {
  color: var(--violet-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--text-pink);
  text-shadow: 0 0 10px var(--text-pink);
}

/* Icon-only footer links */
.social-link--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.social-link--icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 14px rgba(255,101,193,0.5), 0 6px 16px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.12);
}
.social-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255,101,193,0.35));
}
.social-icon--ig {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='5' ry='5'/><path d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z'/><line x1='17.5' y1='6.5' x2='17.5' y2='6.5'/></svg>") center/20px 20px no-repeat;
}
.social-icon--mail {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z'/><path d='m22 8-10 6L2 8'/></svg>") center/20px 20px no-repeat;
}

/* Cute developer credit */
.dev-credit {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 10;
}
.dev-credit p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.dev-link {
  color: var(--text-pink) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(255,101,193,0.3);
}
.dev-link:hover {
  color: var(--star-yellow) !important;
  text-shadow: 0 0 12px rgba(251,191,36,0.5);
  transform: translateY(-1px);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
}

.video-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 101, 193, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: var(--text-pink);
  transform: scale(1.1);
}

.video-modal-player {
  width: 100%;
  height: auto;
  max-height: 80vh;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--neon-purple) !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--neon-purple) !important;
}

/* Gallery specific pagination spacing */
.gallery-swiper .swiper-pagination {
  bottom: -60px !important; /* Moved further from images */
  position: relative !important;
  margin-top: 5rem !important; /* Increased spacing */
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--text-pink) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--deep-orange) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu.show {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .glow-button {
    width: 100%;
  }
  
  .about-grid,
  .book-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .shows-container {
    gap: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .show-item {
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .section-container {
    padding: 4rem 1rem;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Better mobile navigation */
  .navbar {
    padding: 0.8rem 0;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  /* Prevent background elements from causing horizontal scroll */
  .background-elements {
    max-width: 100vw;
    overflow: hidden;
  }
  
  /* Video Carousel Mobile Responsive */
  .video-carousel-wrapper {
    padding: 15px 0;
  }
  
  .video-item {
    width: min(80vw, 280px);
    aspect-ratio: 9 / 16;
    height: auto; /* prevent overflow on narrow screens */
    margin: 0 8px;
  }
  
  .video-overlay {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 0.8rem;
  }
  
  .video-title {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .control-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  /* Big logo mobile responsive */
  .logo-img-big {
    max-width: 400px;
    width: 90vw;
  }
  
  /* Gallery mobile responsive */
  .gallery-section {
    padding: 2rem 0 6rem;
  }
  
  .gallery-carousel-container {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .gallery-swiper {
    padding: 1rem 0;
    overflow: hidden;
  }
  
  .gallery-card {
    width: min(88vw, 320px); /* Further reduced for mobile */
    max-width: 320px;
    height: auto; /* keep intrinsic aspect ratio */
    aspect-ratio: 9 / 16;
  }
  
  .gallery-section .swiper-slide {
    padding-inline: 4px; /* Reduced padding for mobile */
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 1rem 2rem;
  }
  
  .neon-pink-title {
    font-size: 2rem;
  }
  
  /* Gallery extra small screens */
  .gallery-section {
    padding: 1.5rem 0 4rem;
  }
  
  .gallery-carousel-container {
    padding: 0 0.5rem;
  }
  
  .gallery-card {
    width: min(90vw, 280px); /* Even smaller for tiny screens */
    max-width: 280px;
    height: auto; /* avoid forcing layout wider than viewport */
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .tagline-separator {
    display: block;
    margin: 0.5rem 0;
  }
  
  .shows-container {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .show-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    max-width: 240px;
  }
  
  .show-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .show-location {
    font-size: 0.75rem;
  }
  
  /* Ensure no horizontal overflow */
  body {
    overflow-x: hidden;
  }
  
  .main-content {
    max-width: 100vw;
    overflow: hidden;
  }
}
