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

html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f5;
  --text: #1d1d1f;
  --text-muted: #666666;
  --accent: #1e90ff;
  --accent-soft: rgba(30, 144, 255, 0.15);
  --border: rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

/* ── Custom Scrollbar & Selection ── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}
::selection {
  background: var(--accent-soft);
  color: #fff;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(30,144,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(30,144,255,0.15) 0, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -40px;
  background-image:
    radial-gradient(circle at 0 0, rgba(0,0,0,0.04) 0, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0,0,0,0.08) 0, transparent 55%);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.2" numOctaves="2" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.012;
  pointer-events: none;
  z-index: 9999;
}


/* ── Dynamic Ambient Background ── */
.ambient-bg {
  position: fixed;
  inset: -50vw;
  background:
    radial-gradient(circle at 10% 20%, rgba(30,144,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30,144,255,0.06) 0, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(30,144,255,0.05) 0, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: ambientBreath 20s infinite alternate ease-in-out;
}

@keyframes ambientBreath {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.1) translate(2vw, -2vh) rotate(2deg); }
  100% { transform: scale(1) translate(-2vw, 2vh) rotate(-2deg); }
}

section[id] {
  scroll-margin-top: 90px;
}

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

a.accent-link {
  color: var(--accent);
  transition: color 0.2s;
}

a.accent-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

img { 
  display: block; 
  width: 100%; 
  height: auto; 
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  transition: color 0.25s ease;
  padding-bottom: 4px;
  display: inline-block;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease, left 0.35s ease;
}

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

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

.nav-links a.active-link {
  color: var(--text);
}

.nav-links a.active-link::after {
  width: 100%;
  left: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(100px, 18vh, 160px) 0 clamp(60px, 10vh, 120px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  opacity: 0.15;
  filter: grayscale(80%) contrast(120%);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg) 90%);
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 0%, rgba(30, 144, 255, 0.4) 0, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(30, 144, 255, 0.2) 0, transparent 55%);
  opacity: 0.75;
  mix-blend-mode: screen;
  transform: translate3d(var(--heroGlowX, 0px), var(--heroGlowY, 0px), 0);
  transition: transform 0.18s ease-out;
  pointer-events: none;
  z-index: -1;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 600;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  opacity: 0.9;
}

.accent-text {
  color: var(--accent);
  position: relative;
}

.accent-text::after {
  content: "";
  position: absolute;
  inset: 0 0 -6px 0;
  background: linear-gradient(90deg, rgba(30,144,255,0.0), rgba(30,144,255,0.7), rgba(30,144,255,0.0));
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  max-width: 520px;
  margin-bottom: 2.2rem;
  margin-inline: auto;
}

/* ── Buttons ── */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: clamp(14px, 3.5vw, 17px) clamp(28px, 6vw, 38px);
  border-radius: 999px;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.btn.primary {
  background: rgba(30, 144, 255, 0.9);
  color: #ffffff;
  border: none;
}

.btn:hover { 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(30,144,255,0.35);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 7vh, 42px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0.85;
  pointer-events: none;
}

.scroll-cue-icon {
  width: 20px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.scroll-cue-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: white;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.marquee {
  background: var(--bg-soft);
  color: var(--text-muted);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  margin: 0 0 4rem 0;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-content span { padding: 0 2rem; }
.marquee-content .star {
  color: var(--accent);
  opacity: 0.7;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.secondary-marquee {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 3.5rem 0 2rem 0;
  color: var(--text);
  position: relative;
}

.secondary-marquee::before {
  content: attr(data-collab-label);
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  font-weight: 800;
  white-space: nowrap;
}

.secondary-marquee .marquee-content {
  animation: scrollMarqueeReverse 60s linear infinite;
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 300;
}

.secondary-marquee .marquee-content .star {
  color: var(--accent);
  opacity: 0.8;
}

/* ── About ── */
#about {
  padding: clamp(100px, 15vh, 160px) 0 clamp(60px, 10vh, 120px);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  margin-bottom: 1.2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.stat {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
  border-radius: 999px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.about-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.counter-card {
  background: radial-gradient(circle at 0 0, rgba(30,144,255,0.1), transparent 55%),
              var(--bg-soft);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.counter-number {
  display: block;
  font-size: clamp(1.8rem, 4.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.counter-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Gallery ── */
#gallery .container { padding: clamp(60px, 8vh, 100px) 20px clamp(40px, 6vh, 80px); }

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
}

.filter-btn {
  padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-muted);
  cursor: pointer;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(30, 144, 255, 0.9);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(30, 144, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

@media (max-width: 768px) { 
  .gallery-grid { 
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px; 
  } 
}

/* Mobile: 1 column, images shown in full natural height */
@media (max-width: 600px) { 
  .gallery-grid { 
    grid-template-columns: 1fr;
    gap: 12px; 
  } 
}

/* Desktop gallery item – fixed aspect ratio */
.gallery-item {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

@supports not (aspect-ratio: 4/5) {
  .gallery-item {
    height: 400px;
  }
}

/* Mobile: no aspect-ratio, no fixed height – image shows fully */
@media (max-width: 600px) {
  .gallery-item {
    border-radius: 8px;
    aspect-ratio: unset;
    height: auto;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
  }
}

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

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

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(0,0,0,0.2) 0, transparent 40%),
              linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Load More */
.load-more-wrapper {
  text-align: center;
  margin: clamp(2rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

.load-more-btn {
  padding: clamp(10px, 3vw, 14px) clamp(24px, 6vw, 36px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(30, 144, 255, 0.4);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(30,144,255,0.15);
}

.load-more-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(30,144,255,0.35);
}

/* Lightbox ── verbessert für Navigation */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  overflow: auto;
  cursor: pointer;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  max-height: 88svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ccc;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox::after {
  content: "←   →   zum Wechseln    ESC zum Schließen";
  position: absolute;
  bottom: 2.5rem;
  color: rgba(0,0,0,0.35);
  font-size: clamp(0.9rem, 2vw, 1rem);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.lightbox:hover::after {
  opacity: 0.8;
}

.lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}

.lightbox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

.lightbox-btn span {
  font-size: 2.8rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.lightbox-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-2px) rotate(4deg);
  background: rgba(0,0,0,0.9);
  box-shadow: 0 0 24px rgba(0,0,0,0.6);
}

/* ── Reviews ── */
.reviews-section {
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 8vh, 80px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .review-card {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .review-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .review-author {
    font-size: 0.9rem;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  /* transform-style: preserve-3d entfernt, da es in Chrome oft Layout-Glitches mit backdrop-filter verursacht */
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 144, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(30,144,255,0.05);
}

.review-icon {
  font-size: 4rem;
  font-family: serif;
  line-height: 0;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  top: 40px;
  right: 20px;
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  flex-grow: 1;
  font-size: clamp(0.97rem, 2.6vw, 1.07rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  margin-top: auto;
}

.review-event {
  font-size: 0.9rem;
  color: var(--accent);
  display: block;
  margin-top: 0.2rem;
}

.cta-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  max-width: 600px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-box h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 0.8rem;
  color: #fff;
}

.cta-box p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.3rem;
  margin: 1rem 0 1.5rem;
}

.star-rating-input input[type="radio"] {
  display: none;
}

.star-rating-input label {
  cursor: pointer;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating-input label::before {
  content: '★';
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.4);
}

.star-rating-input label:hover {
  transform: scale(1.1);
}

/* Offers */
.offers-section {
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
}

.offer-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.offer-option {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
}

.offer-option:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.offer-option.selected {
  border: 2px solid var(--accent);
  background: rgba(30,144,255,0.06);
  box-shadow: 0 0 32px rgba(30,144,255,0.25);
  position: relative;
}

.offer-option.selected::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    conic-gradient(from 0deg, rgba(30,144,255,0.2), rgba(30,144,255,0.5), rgba(30,144,255,0.2));
  -webkit-mask:
  linear-gradient(#000 0 0) padding-box,
  linear-gradient(#000 0 0);
  mask:
  linear-gradient(#000 0 0) padding-box,
  linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderPulse 6s linear infinite;
  opacity: 0.9;
  pointer-events: none;
}

@keyframes borderPulse {
  0% { transform: rotate(0deg); opacity: 0.7; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0.7; }
}

.offer-emoji {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 1.2rem;
  display: block;
}

.offer-option h3 {
  font-size: clamp(1.35rem, 3.8vw, 1.7rem);
  margin-bottom: 0.8rem;
}

.offer-option p {
  color: var(--text-muted);
  font-size: clamp(0.97rem, 2.6vw, 1.07rem);
  line-height: 1.55;
}

.price {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── Color Lab Section ── */
.color-lab-section {
  padding: clamp(60px, 10vh, 120px) 0;
  background: radial-gradient(circle at 100% 0%, rgba(30,144,255,0.05), transparent 40%);
}

.section-description {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: -1rem auto 3rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.color-lab-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
  .color-lab-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Color Lab Slider Implementation ── */
.color-lab-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 4 / 5;
  --slider-pos: 50%;
  touch-action: none;
}

@supports not (aspect-ratio: 4/5) {
  .color-lab-image-container {
    height: 500px;
  }
}

.before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 0 0 var(--slider-pos));
  pointer-events: none;
  /* KEINE TRANSITION beim Clip-Path für direktes Feedback */
  transition: none; 
}

.after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* FLÜSSIGES SLIDEN: Filteränderungen leicht verzögern */
  transition: filter 0.15s ease-out; 
}

.color-lab-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 3;
  transition: background-color 0.1s ease;
}

input[type="range"].comparison-slider {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  z-index: 20;
  cursor: ew-resize;
  margin: 0;
  opacity: 0; /* Versteckt den Standard-Regler aber lässt ihn funktional */
  touch-action: none;
}

input[type="range"].comparison-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}

input[type="range"].comparison-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 60px; /* Grösserer Hit-Bereich */
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}
input[type="range"].comparison-slider::-moz-range-thumb {
  width: 60px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
  border: none;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  width: 2px;
  background: white;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  /* KEINE TRANSITION beim Sliden */
  transition: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-handle svg {
  width: 20px;
  height: 20px;
}

/* Labels */
.before-label {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.after-label {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(30,144,255,0.3);
  pointer-events: none;
  text-transform: uppercase;
}

.color-lab-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-header label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.control-value {
  font-size: 0.85rem;
  color: var(--accent);
  font-family: monospace;
}

/* Custom Range Input for Controls */
.control-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
}

.control-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(30,144,255,0.5);
  transition: transform 0.2s;
}

.control-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.color-lab-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .color-lab-buttons {
    flex-direction: column;
  }
  .pro-btn, .reset-btn {
    flex: none !important;
    width: 100%;
  }
}

.reset-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}

.reset-btn:hover {
  background: rgba(0,0,0,0.05);
  color: var(--text);
  border-color: rgba(0,0,0,0.3);
}

.pro-btn {
  flex: 2;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.pro-btn:hover {
  background: var(--accent);
  color: #fff;
}

.pro-btn.active {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
}

/* Kontakt */
#contact {
  padding-bottom: clamp(100px, 15vh, 160px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.contact-info p {
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.selected-offer-info {
  background: rgba(30,144,255,0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1rem;
  color: white;
  display: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}
.selected-offer-info.show {
  display: block;
  animation: highlightPulse 0.8s ease;
}
@keyframes highlightPulse {
  0% { transform: scale(0.98); box-shadow: 0 0 0 rgba(30,144,255,0); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(30,144,255,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(30,144,255,0); }
}
.selected-offer-info strong {
  color: var(--text-muted);
}
.selected-offer-info span {
  color: var(--accent);
  font-weight: 700;
  margin-left: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
  color: var(--text);
  font-size: clamp(1rem, 2.5vw, 1.05rem);
}

.contact-form textarea {
  min-height: clamp(140px, 30vh, 180px);
  resize: vertical;
}

/* Footer */
footer {
  padding: clamp(80px, 12vh, 120px) 0 40px;
  background: linear-gradient(to bottom, transparent, var(--bg-soft) 40%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: clamp(60px, 10vh, 100px);
}

.footer-brand h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.footer-brand h2 span { color: var(--accent); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 4px;
}

.footer-nav a:hover { color: var(--text); }
.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.footer-nav a:hover::after { width: 100%; }

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

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(30,144,255,0.4);
}
.social-btn:hover img { filter: brightness(1); }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-meta {
  text-align: center;
}

.footer-meta p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: 5px;
}


@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-social-wrapper {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
  }
}

.shortcuts-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.shortcuts-overlay.visible {
  display: flex;
}

.shortcuts-panel {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 1.8rem 2rem 2rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(30,144,255,0.45), transparent 60%),
              rgba(8,8,12,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.shortcuts-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.shortcuts-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shortcuts-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.shortcuts-panel li strong {
  font-weight: 600;
}

.shortcuts-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.75);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.shortcuts-close:hover {
  transform: translateY(-1px) rotate(4deg);
  background: rgba(0,0,0,0.95);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 990;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 1100px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    max-width: 420px;
    margin: 2.2rem auto 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 992px) {
  .hero-grid, .contact-grid, .offer-selector {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    text-align: center;
  }
  .hero-image {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .burger {
    display: flex;
    z-index: 999;
  }

  .nav-links a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    padding: 0;
  }
  
  .about-stats {
    gap: 0.6rem;
  }
  .stat {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .contact-info {
    text-align: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .marquee-content {
    font-size: 0.9rem;
  }
  .secondary-marquee .marquee-content {
    font-size: 1rem;
  }
  .offer-option {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3rem);
  }
  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .section-title {
    font-size: 2rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .filter-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}



/* ─────────────────────────────────────────────
   Language Switcher
───────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 3px 6px;
  margin-left: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
}

.lang-btn.active {
  background: rgba(30, 144, 255, 0.9);
  color: #fff;
  box-shadow: 0 0 10px rgba(30,144,255,0.4);
}

.lang-btn:not(.active):hover {
  color: var(--text);
  background: rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 0.5rem;
    align-self: center;
  }
}

/* ─────────────────────────────────────────────
   Easter Egg: 3D Tracking Camera & Flash
───────────────────────────────────────────── */
.easter-egg-cam {
  position: fixed;
  bottom: 30px;
  left: 30px; 
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 990;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s linear;
}

.easter-egg-cam.visible {
  opacity: 1;
  visibility: visible;
}

.easter-egg-cam svg {
  width: 22px;
  height: 22px;
  transition: transform 0.1s linear;
}

.easter-egg-cam:hover {
  color: white;
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.5);
}

/* Der Kamera-Blitz mit Text */
.flash-overlay {
  position: fixed;
  inset: 0;
  background: white; 
  z-index: 999999; 
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease-out; 
}

.flash-overlay.flash {
  opacity: 1;
  transition: none; 
}

.flash-text {
  color: #000; 
  /* clamp() sorgt dafür, dass es auf Handys nicht über den Rand geht */
  font-size: clamp(1.8rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.9s ease-out;
  padding: 0 20px;
}

.flash-overlay.flash .flash-text {
  transform: scale(1);
  transition: none;
}

/* Die Kamera auf dem Handy nur etwas anpassen, aber NICHT mehr ausblenden! */
@media (max-width: 576px) {
  .easter-egg-cam {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ── Videos Section ── */
#videos {
  padding: clamp(60px, 8vh, 100px) 0 clamp(40px, 6vh, 80px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: 2rem;
}

.video-item {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
