/* =============================================
   FLAMINGO SHISHABAR — STYLE.CSS
   ============================================= */

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

:root {
  --pink: #ff2d78;
  --pink-soft: #ff6fa8;
  --pink-glow: rgba(255, 45, 120, 0.35);
  --green: #00ff9d;
  --green-soft: #39ffb5;
  --green-glow: rgba(0, 255, 157, 0.25);
  --black: #050508;
  --black-2: #0d0d14;
  --black-3: #111120;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8e8f0;
  --text-muted: rgba(232, 232, 240, 0.55);
  --font-main: 'Outfit', sans-serif;
  --transition-smooth: opacity 0.3s ease, transform 0.3s ease;
  --transition-hover: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

html {
  scroll-behavior: auto; /* JS controls scroll; smooth here caused double-scroll bugs */
  scroll-padding-top: 120px;
  height: 100%;
  background-color: var(--black);
}

body {
  min-height: 100%;
  background-color: #0a0a0e;
  background: 
    /* Subtle ambient lighting layer */
    radial-gradient(ellipse 900px 600px at 10% 15%, rgba(255, 45, 120, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 1000px 700px at 90% 85%, rgba(0, 255, 157, 0.1) 0%, transparent 55%),
    /* Depth layers for premium feel */
    linear-gradient(180deg, rgba(10, 10, 14, 1) 0%, rgba(20, 18, 28, 0.9) 25%, rgba(13, 13, 20, 0.95) 50%, rgba(18, 16, 26, 0.9) 75%, rgba(8, 8, 12, 1) 100%),
    /* Base dark gradient */
    linear-gradient(180deg, #0a0a0e 0%, #0d0d14 50%, #0a0a0e 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  /* Ensure background extends under mobile UI (notch/toolbars) */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}


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

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

/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children for shisha categories */
.shisha-categories .category-section:nth-child(2)  { transition-delay: 0.05s; }
.shisha-categories .category-section:nth-child(3)  { transition-delay: 0.10s; }
.shisha-categories .category-section:nth-child(4)  { transition-delay: 0.15s; }
.shisha-categories .category-section:nth-child(5)  { transition-delay: 0.20s; }
.shisha-categories .category-section:nth-child(6)  { transition-delay: 0.25s; }
.shisha-categories .category-section:nth-child(7)  { transition-delay: 0.30s; }
.shisha-categories .category-section:nth-child(8)  { transition-delay: 0.35s; }
.shisha-categories .category-section:nth-child(9)  { transition-delay: 0.40s; }
.shisha-categories .category-section:nth-child(10) { transition-delay: 0.45s; }
.shisha-categories .category-section:nth-child(11) { transition-delay: 0.50s; }
.shisha-categories .category-section:nth-child(12) { transition-delay: 0.55s; }
.shisha-categories .category-section:nth-child(13) { transition-delay: 0.60s; }
.shisha-categories .category-section:nth-child(14) { transition-delay: 0.65s; }
.shisha-categories .category-section:nth-child(15) { transition-delay: 0.70s; }

/* =============================================
   LANDING SCREEN
   ============================================= */

.landing-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
  background: #050508;
  display: grid;
  place-items: center;
  z-index: 9999;
  overflow: hidden;
  touch-action: auto;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  /* No transition – JS controls display:none for instant, bug-free exit */
}

.landing-overlay::before,
.landing-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-overlay::before {
  background: url("images/homepage-bg-png.webp") center center / cover no-repeat;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  transform: scale(1.04);
  z-index: 1;
  opacity: 1;
  transition: none;
  will-change: opacity, transform;
  backface-visibility: hidden;
}



.landing-overlay::after {
  background:
    linear-gradient(180deg, rgba(4, 4, 8, 0.40) 0%, rgba(4, 4, 8, 0.40) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 45, 120, 0.14), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(0, 255, 157, 0.10), transparent 24%);
  z-index: 2;
  opacity: 0.82;
  transition: none;
  will-change: opacity;
  backface-visibility: hidden;
}



.landing-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 5vw, 56px);
  max-width: 650px;
  width: min(100%, 680px);
  min-height: auto;
  background: transparent;
  border: none;
  border-radius: 32px;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(-6%);
  opacity: 1 !important;
}

/* .hidden and .exit removed – JS uses display:none */

/* When landing is active, hide everything else in the body so the landing
   acts like a standalone page (prevents underlying content from showing
   through when zooming). */


/* No main page reveal animation during landing transition. */

@media (max-width: 1024px) {
  .landing-content {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}


.landing-logo-img {
  display: block;
  max-width: 420px;
  width: clamp(200px, 55vw, 420px);
  margin: 0 auto;
}

.landing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.scroll-hint {
  display: flex;
  justify-content: center;
  margin: clamp(28px, 3vw, 36px) auto 0;
  position: relative;
  z-index: 1;
}

.scroll-icon {
  width: 38px;
  height: 58px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 0;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.scroll-icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--green));
  box-shadow: 0 0 22px rgba(255, 45, 120, 0.28);
  animation: scroll-indicator-dot 1.3s ease-in-out infinite;
}

@media (orientation: portrait) and (min-width: 720px) {
  #über-uns {
    position: relative;
  }

  #über-uns .scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(24px, 4vw, 36px);
    transform: translateX(-50%);
    margin: 0;
    z-index: 1;
  }
}

@keyframes scroll-indicator-dot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
}

.landing-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: rgba(232, 232, 240, 0.86);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.30);
}

body.viewport-mobile .container,
body.viewport-tablet .container {
  padding-left: 18px;
  padding-right: 18px;
}

body.viewport-mobile .section {
  padding: 80px 0;
}

body.viewport-tablet .section {
  padding: 95px 0;
}

body.viewport-desktop .section {
  padding: 110px 0;
}


#landing-btn {
  min-width: 210px;
  position: relative;
  z-index: 3;
}

@media (max-width: 720px) {
  .landing-content {
    padding: 28px 22px;
    margin: 0 10px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    transform: translateY(-10%);
  }

  .landing-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .landing-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  #landing-btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 28px;
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Disable scroll when landing is visible */
body.landing-active {
  overflow: hidden;
  position: fixed;
  inset: 0;
  min-height: calc(var(--vh, 1vh) * 100);
  min-width: 100vw;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  overscroll-behavior: none;
  touch-action: auto;
}

body:not(.landing-active) {
  touch-action: auto;
}

html, body {
  min-height: 100%;
  touch-action: auto;
}

/* =============================================
   SHARED UTILITIES
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}


.section {
  padding: 110px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.2) 20%, rgba(0, 255, 157, 0.15) 50%, transparent 80%);
  pointer-events: none;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-tag.center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 60px;
}

.section-title.center {
  text-align: center;
}

.section-copy {
  max-width: 740px;
  margin: 0.4rem auto 0;
  color: rgba(232, 232, 240, 0.78);
  line-height: 1.7;
  font-size: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #c84bff 60%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1px 28px;
  border-bottom: 1px solid var(--glass-border);
}

#navbar.menu-open {
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: 7px;
    transition: transform 0.3s ease;
  }

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

  .nav-toggle {
    transition: transform 0.3s ease;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
    list-style: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
  }

  .nav-links.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li a {
    display: block;
    padding: 10px 28px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.80rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

/* =============================================
   NAVBAR — DESKTOP (≥ 721px)
   ============================================= */

@media (min-width: 721px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 28px;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0;
    list-style: none;
    transition: none;
  }

  .nav-links li a {
    padding: 0;
    border-bottom: none;
    font-size: 0.88rem;
  }

  .nav-links a::after {
    display: block;
  }
}

/* =============================================
   HERO
   ============================================= */

#hero {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  max-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 45, 120, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0, 255, 157, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0a0a14 0%, #050508 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #fff;
}

.hero-location {
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 48px;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--pink) 0%, #c84bff 100%) !important;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 0 30px var(--pink-glow), 0 0 60px rgba(200, 75, 255, 0.2);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6fa8 0%, #e05fff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 50px var(--pink-glow), 0 0 90px rgba(200, 75, 255, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 30px var(--pink-glow);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ==============================
   SHISHA SEARCH — compact styling
   Keeps the search bar visually consistent across viewports
   ============================== */
.shisha-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 22px 0 34px;
}

.shisha-search-wrapper .search-badge {
  /* center the compact input and remove wide wrapper styling */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto !important;
  flex: 0 0 auto !important;
  max-width: 100%;
  padding: 0;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#shisha-search {
  display: inline-block;
  width: 320px; /* compact fixed visual width on larger screens */
  min-width: 200px; /* prevent getting too small */
  max-width: 86vw; /* keep it inset on narrow screens */
  padding: 10px 18px; /* comfortable vertical and horizontal padding */
  border-radius: 999px; /* fully rounded ends */
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.45), rgba(255, 111, 168, 0.32));
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 10px 40px rgba(255, 45, 120, 0.12);
  outline: none;
  text-align: center; /* center placeholder and typed text */
}

#shisha-search::placeholder { color: rgba(255,255,255,0.75); }

@media (max-width: 420px) {
  .shisha-search-wrapper .search-badge { width: auto; }
  #shisha-search { width: 92vw; min-width: 180px; max-width: 92vw; padding: 9px 14px; font-size: 0.95rem; }
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--pink);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* =============================================
   ABOUT
   ============================================= */

#über-uns {
  position: relative;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-glow-card {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 120, 0.15) 0%, rgba(0, 255, 157, 0.08) 60%, transparent 100%);
  border: 1px solid rgba(255, 45, 120, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flamingo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-icon 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 45, 120, 0.6));
}

.flamingo-icon img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.15);
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.05); opacity: 1; }
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.about-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   OFFERS
   ============================================= */

#angebote {
  background: transparent;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.offer-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: var(--transition-hover);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.06) 0%, rgba(0, 255, 157, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 45, 120, 0.2), 0 0 0 1px rgba(255, 45, 120, 0.3);
  border-color: rgba(255, 45, 120, 0.4);
}

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

.offer-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-price {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SHISHA MENU
   ============================================= */

#shisha {
  background: transparent;
}

.extras-row {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 48px;
  backdrop-filter: blur(4px);
}

.extras-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.extras-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.extra-price {
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.25);
  color: var(--green);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.menu-price-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.12) 0%, rgba(200, 75, 255, 0.1) 100%);
  border: 1px solid rgba(255, 45, 120, 0.25);
  border-radius: 50px;
  padding: 14px 36px;
  margin: 0 auto 48px;
  width: fit-content;
  font-size: 1rem;
  color: var(--text-muted);
}

.menu-price-badge strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
}

/* SHISHA MENU CATEGORIES */
.shisha-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* Searchable Shisha Menu UI */

.shisha-search-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 24px auto 12px;
  width: 100%;
  max-width: 420px;
}

.menu-price-badge.search-badge {
  /* center the compact input and remove wide wrapper styling */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.menu-price-badge.search-badge input[type="search"] {
  /* compact, fixed visual width and fully rounded */
  flex: 0 0 auto;
  width: 320px;
  max-width: 100%;
  min-width: 200px;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.45), rgba(255, 111, 168, 0.32));
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: #ffffff;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(255, 45, 120, 0.12);
  text-align: center;
}

.menu-price-badge.search-badge input[type="search"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.18);
}

.results-count {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.shisha-empty {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  max-width: 420px;
}

@media (max-width: 720px) {
  .menu-price-badge.search-badge { padding: 8px 12px; }
}

.category-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(4px);
  transition: var(--transition-hover);
}

.category-section:hover {
  border-color: rgba(255, 45, 120, 0.3);
  box-shadow: 0 8px 32px rgba(255, 45, 120, 0.1);
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 45, 120, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tobacco-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.tobacco-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.tobacco-item:hover {
  background: rgba(255, 45, 120, 0.04);
  border-color: rgba(255, 45, 120, 0.18);
  transform: translateY(-1px);
}

.tobacco-item .item-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
}

.tobacco-item .item-price {
  margin-left: 16px;
  white-space: nowrap;
  color: var(--pink);
  font-weight: 700;
}

mark.highlight {
  background: linear-gradient(90deg, rgba(255,45,120,0.12), rgba(0,255,157,0.06));
  color: var(--text);
  padding: 0 3px;
  border-radius: 3px;
}

.tobacco-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.tobacco-flavor {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-style: italic;
}

/* =============================================
   FOOD
   ============================================= */

#food {
  background: transparent;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.food-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: var(--transition-hover);
}

.food-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 157, 0.3);
  box-shadow: 0 12px 40px rgba(0, 255, 157, 0.1);
}

.food-emoji {
  font-size: 2.4rem;
}

.food-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.food-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.food-card.highlight-card {
  border-color: rgba(255, 45, 120, 0.3);
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.07) 0%, rgba(200, 75, 255, 0.05) 100%);
}

.food-card.highlight-card:hover {
  border-color: rgba(255, 45, 120, 0.5);
  box-shadow: 0 12px 40px rgba(255, 45, 120, 0.15);
}

.food-card.highlight-card .food-price {
  color: var(--pink);
}

/* =============================================
   COCKTAILS
   ============================================= */

#cocktails {
  background: transparent;
}

.drinks-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 60px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.drinks-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 120, 0.4), transparent);
  align-self: stretch;
}

.drinks-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 45, 120, 0.2);
}

.drink-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease;
}

.drink-item:hover {
  transform: translateX(4px);
}

.drink-item:last-child {
  border-bottom: none;
}

.drink-name {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.drink-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 3px,
    transparent 3px,
    transparent 9px
  );
}

.drink-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.drink-item.highlight-drink .drink-name {
  color: var(--pink);
}

.drink-item.highlight-drink .drink-price {
  color: var(--pink);
}

/* =============================================
   LOCATION
   ============================================= */

#location {
  background: transparent;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  border-color: rgba(255, 45, 120, 0.25);
  box-shadow: 0 8px 40px rgba(255, 45, 120, 0.08);
}

.location-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--text-muted);
}

.hours-row span:last-child {
  font-weight: 600;
  color: #fff;
}

.hours-row.highlight-row {
  background: rgba(255, 45, 120, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-bottom: none;
}

.hours-row.highlight-row span:last-child {
  color: var(--pink);
}

.address {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--green);
  text-shadow: 0 0 18px rgba(0, 255, 157, 0.18);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 157, 0.5);
  text-underline-offset: 4px;
  transition: transform 0.25s ease, color 0.25s ease, text-decoration-color 0.25s ease;
  text-decoration-thickness: 2px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon svg[style*="fill:currentColor"] {
  fill: currentColor;
  stroke: none;
}

.contact-link:hover .contact-icon,
.contact-link:focus-visible .contact-icon {
  transform: translateX(2px);
}

.contact-link[href^="tel:"],
.contact-link[href^="mailto:"] {
  color: var(--green);
  text-shadow: 0 0 18px rgba(0, 255, 157, 0.18);
  text-decoration-color: rgba(0, 255, 157, 0.5);
}

.contact-link.social-link {
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 45, 120, 0.18);
  text-decoration-color: rgba(255, 45, 120, 0.5);
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateX(2px);
}

.contact-link:hover,
.contact-link:focus-visible {
  text-decoration-color: currentColor;
}

.contact-link span {
  display: inline-block;
}

.footer-socials a {
  font-size: 0.95rem;
  color: var(--green);
  letter-spacing: 0.06em;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 157, 0.45);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-shadow: 0 0 18px rgba(0, 255, 157, 0.18);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--pink);
  text-decoration-color: rgba(255, 45, 120, 0.65);
  text-shadow: 0 0 24px rgba(255, 45, 120, 0.3);
  transform: translateY(-1px);
}

.contact-icon {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

/* =============================================
   DIGITAL MENU - TAB NAVIGATION
   ============================================= */

.menu-section-hidden {
  display: none !important;
}

#menü {
  background: transparent;
  padding: 80px 0;
}

.menu-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 50px 0 60px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 45, 120, 0.3) transparent;
}

.menu-tabs-wrapper::-webkit-scrollbar {
  height: 4px;
}

.menu-tabs-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.menu-tabs-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 120, 0.3);
  border-radius: 2px;
}

.menu-tabs-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 45, 120, 0.5);
}

.menu-tabs {
  display: flex;
  gap: 12px;
  padding: 0 12px;
  width: fit-content;
  min-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-tab:hover {
  border-color: rgba(255, 45, 120, 0.3);
  color: var(--text);
  background: rgba(255, 45, 120, 0.06);
}

.menu-tab.active {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15) 0%, rgba(0, 255, 157, 0.08) 100%);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.2);
}

.menu-tab.active .tab-icon {
  transform: scale(1.1);
}

.tab-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.tab-label {
  letter-spacing: 0.05em;
}

.menu-content-wrapper {
  min-height: 600px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-content-section {
  animation: fadeIn 0.4s ease;
}

/* =============================================
   ADDITIONAL MENU SECTIONS
   ============================================= */

#bier {
  background: transparent;
}

#alkoholfrei {
  background: transparent;
}

#aperitif {
  background: transparent;
}

#wein {
  background: transparent;
}

#champagner {
  background: transparent;
}

#gin {
  background: transparent;
}

#vodka {
  background: transparent;
}

#brown-gold {
  background: transparent;
}

#shots {
  background: transparent;
}

#cafe {
  background: transparent;
}

#vodka {
  background: var(--black-2);
}

#brown-gold {
  background: var(--black-3);
}

#shots {
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black-2) 100%);
}

#cafe {
  background: var(--black-2);
}

/* =============================================
   PARTNERS
   ============================================= */

#partners {
  padding: 70px 0;
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(255, 45, 120, 0.08);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.partner-badge {
  padding: 14px 32px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--glass);
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.partner-badge:hover {
  border-color: rgba(0, 255, 157, 0.3);
  color: var(--green);
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
  background: transparent;
  border-top: 1px solid rgba(0, 255, 157, 0.08);
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.15);
  padding: 60px 24px;
  text-align: center;
  position: relative;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-socials a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.25s ease, transform 0.25s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--pink);
  text-decoration-color: currentColor;
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(232, 232, 240, 0.25);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 960px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid .location-card:last-child {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-visual {
    order: -1;
  }

  .about-stats {
    justify-content: center;
  }

  .drinks-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .drinks-divider {
    display: none;
  }
}

@media (max-width: 720px) {
  #navbar {
    padding: 16px 20px;
  }

  #navbar.menu-open {
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
  }

  #navbar.menu-open .nav-logo,
  #navbar.menu-open .nav-toggle {
    transform: translateY(2px);
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
  }

  .nav-links.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li a {
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.92rem;
  }

  .nav-links a::after {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid .location-card:last-child {
    grid-column: auto;
  }

  .shisha-categories {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-glow-card {
    width: 200px;
    height: 200px;
  }

  .flamingo-icon {
    font-size: 5rem;
  }

  .extras-grid {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    gap: 24px;
  }

  .tobacco-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */

.legal-page {
  min-height: 100vh;
}

.legal-section-hero {
  padding: 140px 24px 40px;
  text-align: center;
}

.legal-section-hero h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.legal-section-hero p {
  color: var(--text-muted);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-subsection {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px clamp(20px, 4vw, 32px);
  margin-bottom: 20px;
}

.legal-subsection h3 {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.legal-subsection h4 {
  color: var(--pink-soft);
  font-size: 1rem;
  margin: 16px 0 8px;
}

.legal-subsection p,
.legal-subsection li {
  color: var(--text);
  margin-bottom: 8px;
}

.legal-subsection ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.legal-subsection a {
  color: var(--pink-soft);
  text-decoration: underline;
}

.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
}

.highlight-box {
  background: var(--pink-glow);
  border: 1px solid var(--pink);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 12px 0;
}

.rights-list {
  display: grid;
  gap: 8px;
}

.rights-list-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 16px;
}

#footer-legal {
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px;
  text-align: center;
  background: transparent;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.15);
}

#footer-legal .footer-content {
  max-width: 600px;
  margin: 0 auto;
}

#footer-legal .footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#footer-legal .footer-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

#footer-legal .footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 30px;
}

#footer-legal .footer-socials a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.25s ease, transform 0.25s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

#footer-legal .footer-socials a:hover,
#footer-legal .footer-socials a:focus-visible {
  color: var(--pink);
  text-decoration-color: currentColor;
  transform: translateY(-1px);
}

#footer-legal .footer-copy {
  font-size: 0.78rem;
  color: rgba(232, 232, 240, 0.25);
}

/* =============================================
   AMBIENTE SECTION
   ============================================= */

.ambiente-section {
  position: relative;
  overflow: hidden;
}

.ambiente-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(255,45,120,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.ambiente-hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 24px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.6s ease;
}

.ambiente-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.ambiente-intro {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text);
  margin: 1.5rem 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.ambiente-intro:first-of-type {
  margin-top: 1.5rem;
}

.ambiente-intro:last-of-type {
  margin-bottom: 2.5rem;
}

.ambiente-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}

/* Ambiente Button */
.btn-ambiente {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255,105,180,0.12) 0%, rgba(0,255,157,0.06) 100%);
  border: 2px solid var(--pink);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255,105,180,0.12);
  backdrop-filter: blur(2px);
}

.btn-ambiente::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn-ambiente:hover {
  border-color: var(--pink-soft);
  background: linear-gradient(135deg, rgba(255,105,180,0.15) 0%, rgba(0,255,157,0.08) 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 105, 180, 0.35), 0 0 70px rgba(255, 105, 180, 0.15), inset 0 0 20px rgba(255, 105, 180, 0.08);
}

.btn-ambiente:hover::before {
  left: 100%;
}

.btn-ambiente span {
  display: inline-block;
}

/* Glow Accent */
.ambiente-glow-accent {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,157,0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -50px); }
}

/* Responsive Ambiente */
@media (max-width: 768px) {
  .ambiente-hero {
    padding: 3rem 1.5rem;
  }

  .btn-ambiente {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }
  
  .btn-ambiente svg {
    width: 18px;
    height: 18px;
  }
  
  .ambiente-intro {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
  }
}

@media (max-width: 540px) {
  .ambiente-hero {
    padding: 2rem 1rem;
  }

  .btn-ambiente {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-ambiente svg {
    width: 16px;
    height: 16px;
  }
  
  .ambiente-glow-accent {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
  }
}

/* Ambiente Gallery Modal */
.ambiente-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 20px;
  overflow-y: auto;
  animation: fadeInModal 0.4s ease;
}

.ambiente-gallery-modal.active {
  display: flex;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.ambiente-gallery-content {
  background: linear-gradient(135deg, rgba(13,13,20,0.95) 0%, rgba(18,16,26,0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 80px rgba(255,45,120,0.15), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.ambiente-gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 45, 120, 0.1);
  border: 2px solid rgba(255, 45, 120, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.ambiente-gallery-close:hover {
  background: rgba(255, 45, 120, 0.25);
  border-color: rgba(255, 45, 120, 0.6);
  transform: rotate(90deg);
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.3);
}

.ambiente-gallery-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--pink);
  display: block;
}

.ambiente-gallery-close span:first-child {
  transform: rotate(45deg);
}

.ambiente-gallery-close span:last-child {
  transform: rotate(-45deg);
}

.ambiente-gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.ambiente-gallery-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--pink) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.ambiente-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ambiente-gallery-item {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,45,120,0.15);
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.ambiente-gallery-item:hover {
  box-shadow: 0 0 35px rgba(255, 105, 180, 0.25), inset 0 0 20px rgba(255, 105, 180, 0.03);
  border-color: rgba(255, 105, 180, 0.3);
}

/* Lightbox Modal */
.ambiente-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.99);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeInModal 0.3s ease;
}

.ambiente-lightbox.active {
  display: flex;
}

.ambiente-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambiente-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(255,45,120,0.2);
  animation: slideInLightbox 0.3s ease;
}

@keyframes slideInLightbox {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ambiente-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 45, 120, 0.15);
  border: 2px solid var(--pink);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.ambiente-lightbox-close:hover {
  background: rgba(255, 45, 120, 0.3);
  transform: rotate(90deg);
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.4);
}

.ambiente-lightbox-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--pink);
  display: block;
}

.ambiente-lightbox-close span:first-child {
  transform: rotate(45deg);
}

.ambiente-lightbox-close span:last-child {
  transform: rotate(-45deg);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .ambiente-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .ambiente-gallery-content {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .ambiente-gallery-modal {
    padding: 10px;
  }
  
  .ambiente-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ambiente-gallery-item {
    height: 250px;
  }
  
  .ambiente-gallery-content {
    padding: 20px;
    border-radius: 16px;
    max-height: 95vh;
  }
  
  .ambiente-gallery-header h3 {
    font-size: 1.4rem;
  }
}

/* =============================================
   EVENTS SECTION
   ============================================= */

.events-intro {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.events-container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Empty State */
.events-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.empty-state-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.empty-state-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.empty-state-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-state-links a {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* Event Cards Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-hover);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.event-card:hover {
  border-color: rgba(255,45,120,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,45,120,0.1);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.3;
  margin: 0.5rem 0 0 0;
}

.event-card-date {
  font-size: 0.85rem;
  color: var(--pink-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.event-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin: 0.5rem 0 0 0;
}

/* Responsive Events */
@media (max-width: 720px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-card {
    padding: 1.5rem;
  }
  
  .events-empty-state {
    padding: 2.5rem 1.5rem;
  }
  
  .empty-state-content h3 {
    font-size: 1.2rem;
  }
  
  .empty-state-links {
    gap: 0.75rem;
  }
}
