:root {
  --neon-blue: #00b4ff;
  --neon-pink: #ff2d7b;
  --neon-purple: #b44dff;
  --neon-yellow: #ffe14d;
  --dark-bg: #0a0a12;
  --card-bg: #12121f;
  --card-border: #1e1e35;
  --text-primary: #eaeaf0;
  --text-muted: #8888a0;
  --nav-bg: rgba(10,10,18,0.7);
  --nav-mobile-bg: rgba(10,10,18,0.95);
  --hero-grad-1: rgba(0,180,255,0.08);
  --hero-grad-2: rgba(255,45,123,0.06);
  --hero-grad-3: rgba(180,77,255,0.05);
  --card-hover-shadow: rgba(0,0,0,0.3);
  --grid-line: rgba(0,180,255,0.03);
  --noise-opacity: 0.04;
}

[data-theme="light"] {
  --dark-bg: #f0f0f5;
  --card-bg: #ffffff;
  --card-border: #dddde5;
  --text-primary: #1a1a2e;
  --text-muted: #5a5a72;
  --nav-bg: rgba(240,240,245,0.8);
  --nav-mobile-bg: rgba(240,240,245,0.97);
  --hero-grad-1: rgba(0,180,255,0.06);
  --hero-grad-2: rgba(255,45,123,0.04);
  --hero-grad-3: rgba(180,77,255,0.04);
  --card-hover-shadow: rgba(0,0,0,0.08);
  --grid-line: rgba(0,100,200,0.06);
  --noise-opacity: 0.02;
  --neon-blue: #0090d0;
  --neon-pink: #e0206a;
  --neon-purple: #8a30d4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 50%, var(--hero-grad-1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, var(--hero-grad-2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 80%, var(--hero-grad-3) 0%, transparent 70%);
  background-size: 100% 100vh;
  background-repeat: repeat-y;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: var(--noise-opacity, 1);
}

/* ── NEON GLOW UTILITY ── */
.glow-blue { text-shadow: 0 0 10px var(--neon-blue), 0 0 40px rgba(0,180,255,0.3); }
.glow-pink { text-shadow: 0 0 10px var(--neon-pink), 0 0 40px rgba(255,45,123,0.3); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--neon-blue);
  text-shadow: 0 0 12px rgba(0,180,255,0.5);
}

.nav-logo span { color: var(--neon-pink); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0,180,255,0.4);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  overflow: hidden;
  max-width: none;
}

.hero-bg {
  display: none;
}

/* Animated neon line */
.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), var(--neon-purple), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-pink);
  border: 1px solid rgba(255,45,123,0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 6px;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-title .blue { color: var(--neon-blue); text-shadow: 0 0 30px rgba(0,180,255,0.4), 0 0 80px rgba(0,180,255,0.15); }
.hero-title .pink { color: var(--neon-pink); text-shadow: 0 0 30px rgba(255,45,123,0.4), 0 0 80px rgba(255,45,123,0.15); }

.hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(0,180,255,0.2);
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,180,255,0.4);
}

.hero-cta svg { width: 16px; height: 16px; }

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

/* ── SECTION DEFAULTS ── */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), var(--neon-purple), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

/* Hero already has its own line, no double */
.hero::after { display: none; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── FEATURES / SORTIMENT ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,255,0.2);
  box-shadow: 0 8px 40px var(--card-hover-shadow);
}

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

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

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

/* ── HOURS ── */
#zeiten { position: relative; }

.hours-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hours-table {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.95rem;
  transition: background 0.2s;
}

.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(0,180,255,0.03); }

.hours-row .day { font-weight: 500; }
.hours-row .time {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon-blue);
}

.hours-row.today {
  background: rgba(0,180,255,0.06);
  border-left: 3px solid var(--neon-blue);
}

.hours-highlight {
  background: linear-gradient(135deg, rgba(0,180,255,0.08), rgba(255,45,123,0.05));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.hours-highlight .big-emoji { font-size: 3rem; margin-bottom: 1rem; }

.hours-highlight h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

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

.open-badge {
  display: inline-block;
  background: rgba(0,255,100,0.1);
  color: #00ff64;
  border: 1px solid rgba(0,255,100,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,100,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,255,100,0); }
}

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 1.5rem; }

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,180,255,0.08);
  border: 1px solid rgba(0,180,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-text a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.info-text a:hover { color: var(--neon-pink); }

.map-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.map-container iframe {
  border: 1px solid var(--card-border);
}

.map-link {
  display: inline-block;
  text-align: center;
  color: var(--neon-blue);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(0,180,255,0.3);
  border-radius: 50px;
  transition: all 0.3s;
}

.map-link:hover {
  background: rgba(0,180,255,0.1);
  box-shadow: 0 0 20px rgba(0,180,255,0.15);
}

/* ── INSTAGRAM ── */
#insta .section-title {
  margin-bottom: 1.5rem;
}

.insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 25px rgba(180,77,255,0.25);
  margin-bottom: 3rem;
}

.insta-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(180,77,255,0.4);
}

.insta-follow svg { width: 14px; height: 14px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.insta-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.insta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180,77,255,0.2);
  box-shadow: 0 8px 40px var(--card-hover-shadow);
}

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

.insta-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

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

.insta-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  position: relative;
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 25px rgba(180,77,255,0.18), 0 0 50px rgba(255,45,123,0.07);
  animation: instaGlow 3s ease-in-out infinite;
}

@keyframes instaGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(180,77,255,0.18), 0 0 50px rgba(255,45,123,0.07); }
  50%       { box-shadow: 0 0 40px rgba(180,77,255,0.3),  0 0 80px rgba(255,45,123,0.12); }
}

/* ── FOOTER ── */
footer {
  border-top: none;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(0,180,255,0.3);
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--neon-pink); }

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
  display: block;
}

.footer-links a:hover { color: var(--neon-blue); transform: translateY(-2px); }

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    background: var(--nav-mobile-bg);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
  }
  .hours-container,
  .location-grid {
    grid-template-columns: 1fr;
  }
  section { padding: 4rem 1.5rem; }
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0,180,255,0.15);
}

.theme-icon {
  position: absolute;
  font-size: 1.2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Dark mode (default): moon visible, sun hidden */
.theme-icon--dark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-icon--light {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

/* Light mode: sun visible, moon hidden */
[data-theme="light"] .theme-icon--dark {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .theme-icon--light {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ── LIGHT MODE GLOW ADJUSTMENTS ── */
[data-theme="light"] .nav-logo {
  text-shadow: none;
}

[data-theme="light"] .hero-title .blue {
  text-shadow: 0 0 20px rgba(0,144,208,0.2);
}

[data-theme="light"] .hero-title .pink {
  text-shadow: 0 0 20px rgba(224,32,106,0.2);
}

[data-theme="light"] .hero-cta {
  box-shadow: 0 4px 20px rgba(0,144,208,0.2);
}

[data-theme="light"] .hero-cta:hover {
  box-shadow: 0 6px 30px rgba(0,144,208,0.3);
}

[data-theme="light"] .footer-logo {
  text-shadow: none;
}

[data-theme="light"] .feature-card:hover {
  border-color: rgba(0,144,208,0.25);
}

[data-theme="light"] .hours-row.today {
  background: rgba(0,144,208,0.06);
  border-left-color: var(--neon-blue);
}

[data-theme="light"] .hours-highlight {
  background: linear-gradient(135deg, rgba(0,144,208,0.06), rgba(224,32,106,0.04));
}

