:root {
  --font: 'Inter', sans-serif;
  --text: #111;
  --bg: #f9f9f9;
  --accent: #007aff;
  --glass: rgba(255, 255, 255, 0.5);
  --blur: 20px;
  --bg-light: #f2f2f7;
  --text-dark: #1c1c1e;
}

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

body, html {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
    scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
 
 
}
body > section {
  scroll-snap-align: start;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Sections --- */
.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
}

.full-screen {
  height: 100vh;
  min-height: 100dvh;
}

/* --- Intro --- */
.intro {
  background: linear-gradient(to bottom, #ffffff, #f0f3f6);
  text-align: center;
}

.intro h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.glow {
  color: var(--accent);
  text-shadow: 0 0 25px rgba(0, 122, 255, 0.4);
}

.intro p {
  font-size: 1.3rem;
  color: #333;
  max-width: 600px;
  margin: auto;
}

/* --- Sticky Visual --- */
.sticky-visual {
  position: relative;
   height: 200vh; /* ⬅️ mehr Platz für Bild UND Text! */
}

.sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sticky-img {
  width: 60%;
  max-width: 800px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

.text-overlay {
  position: relative;
  margin-top: 100vh; /* bleibt */
  padding: 4rem 2rem 6rem; /* mehr Platz unten */
  max-width: 700px;
  text-align: center;
  z-index: 2;
}


.text-overlay h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.text-overlay p {
  font-size: 1.2rem;
  color: #444;
}

/* --- Transition Text --- */
.transition-text {
  background: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.transition-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.transition-text p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* --- CTA --- */
.final-screen {
  background: linear-gradient(to top, #eef2f5, #fff);
  text-align: center;
}

.final-screen h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-screen p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #005bd1;
  transform: translateY(-2px);
}

/* --- Fade-in Reveal --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .intro h1 {
    font-size: 2.8rem;
  }

  .sticky-img {
    width: 90%;
  }

  .text-overlay {
    margin-top: 90vh;
    padding: 2rem;
  }
}
body.dark {
  --bg: #0f0f0f;
  --text: #f2f2f2;
  --glass: rgba(18, 18, 18, 0.4);
}

body.dark .final-screen {
  background: linear-gradient(to top, #111, #1e1e1e);
}

body.dark .intro,
body.dark .transition-text {
  background: #0f0f0f;
}
/* Hamburger zentriert oben */
.hamburger-center {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  
  backdrop-filter: blur(14px);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hamburger-center .bar {
  width: 40px;
  height: 5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}
.hamburger-center.open .bar {
  background: var(--accent);
  animation: glowPulse 1.6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow:
      0 0 6px rgba(0, 36, 75, 0.8),
      0 0 14px rgba(0, 122, 255, 0.4),
      0 0 24px rgba(0, 122, 255, 0.2);
  }
  to {
    box-shadow:
      0 0 6px rgb(109, 108, 107),
      0 0 14px rgba(58, 57, 56, 0.6),
      0 0 6px rgb(0, 0, 0);
  }
}



/* Menü Overlay */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28px);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.overlay-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  
}

/* Menü-Navigation */
.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeInMenu 0.8s ease forwards;
}

.menu-nav a {
  font-size: 2.2rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  transition: transform 0.2s ease, color 0.3s ease;
}

.menu-nav a:hover {
  color: var(--accent);
  transform: scale(1.05);
}

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

/* Optional: CTA-Button im Menü */
.menu-nav .cta-btn {
  font-size: 1.6rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  margin-top: 1.5rem;
}
/* Zustand beim Öffnen */

.hamburger-center.open .bar:nth-child(1) {
  transform: translateY(-5px) rotate(0deg);
}

.hamburger-center.open .bar:nth-child(2) {
  transform: rotate(-30deg);
  transform-origin: center;
}

.hamburger-center.open .bar:nth-child(3) {
  transform: translateY(+5px) rotate(0deg);
}

/* --- Hero Vision Section (Bild + Text überlagert) --- */
/* --- Vision Hero --- */
/* --- Hero Vision (Mobile + Desktop optimiert) --- */
.hero-vision {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt Container proportional */
  object-position: center;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(0,0,0,0.3));
  z-index: 2;
  backdrop-filter: blur(2px);
}

.hero-text {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text {
    padding: 1rem;
  }
}


.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 900;
}

.highlight {
  color: #00baff;
  text-shadow: 0 0 24px rgba(0, 186, 255, 0.6);
}

/* --- Fade-in Scroll Effekt für alle Sections --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }
}
.abo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.abo-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 2rem;
  width: 300px;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.abo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.abo-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.abo-card .preis {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--accent, #007aff);
}

.abo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abo-card ul li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.highlight-card {
  background: linear-gradient(135deg, rgba(0,122,255,0.15), rgba(0,122,255,0.05));
  border: 1px solid rgba(0,122,255,0.2);
  color: white;
}

.full-footer {
  background: linear-gradient(to top, #0f0f0f, #1a1a1a);
  color: var(--text);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease, color 0.4s ease;
  z-index: 2;
  position: relative;
}

body.dark .full-footer {
  background: linear-gradient(to top, #0f0f0f, #1a1a1a);
  color: #f5f5f5;
}

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

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
}

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

.footer-col ul li {
  margin: 0.4rem 0;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: var(--accent, #007aff);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
  color: #0a84ff;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 2rem;
}




.upload-wrapper {
  flex: 1;
  max-width: 400px;
  color: white;
  z-index: 3;
  
}

.upload-result {
  display: inline-block;
  background: #f0fdf4;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d1fae5;
  color: #064e3b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-top: 1rem;
  text-align: center;
}

.styled-link {
  display: inline-block;
  margin-top: 0.75rem;
  background-color: #10b981;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  word-break: break-word;
}

.styled-link:hover {
  background-color: #059669;
}

.copy-btn {
  margin-top: 0.5rem;
  margin-left: 0.6rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(to right, #3e67ec, #247afb);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #1f1f1f;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.copy-btn:hover {
  background: linear-gradient(to right, #797875, #72716f);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.copy-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}



.upload-status a {
  display: inline-block;
  margin-top: 0.5rem;
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.styled-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: inherit; /* übernimmt die umgebende Textfarbe */
  font-weight: 600;
  text-decoration: none; /* entfernt Unterstreichung */
  word-break: break-all;
  background-color: #f0f0f0;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.styled-link:hover {
  background-color: #e0e0e0;
  text-decoration: none;
  transform: scale(1.02);
}


.upload-status a:hover {
  background: #059669;
}


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

.upload-headline {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.upload-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  box-shadow:
   0px 0px 20px rgba(199, 131, 4, 0.4),
    inset 0 0 0.5px rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upload-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    inset 0 0 0.5px rgba(255,255,255,0.3);
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  
}

.input-group label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #e0e0e0;
}

.input-group input,
.input-group select {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #000000;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.input-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.upload-btn {
  width: 100%;
  background: var(--accent, #007aff);
  border: none;
  color: white;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,122,255,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.upload-btn:hover {
  background: #005bd1;
  transform: translateY(-2px);
}
/* Default (Desktop) – bleibt wie es ist */
.hero-vision {
  display: flex;
  flex-direction: row; /* Bild + Text nebeneinander */
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Upload Wrapper bleibt links, hero-text rechts */

/* Mobilansicht anpassen */
.hero-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  z-index: 3;
  position: relative;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  color: white;
  z-index: 3;
  text-align: left;
  order: 2; /* <- Auf Mobile zuerst */
}

.upload-wrapper {
  flex: 1;
  z-index: 3;

  max-width: 400px;
  color: white;
  order: 1; /* <- Auf Mobile unter den Text */
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .hero-text,
  .upload-wrapper {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-text {
    order: 1; /* Text kommt jetzt ÜBER upload-wrapper */
  }

  .upload-wrapper {
    order: 2; /* Upload darunter */
  }
}
.typing-text {
  display: inline-block;
  min-height: 2.4rem; /* oder je nach Textlänge 3rem */
  white-space: nowrap;
}


/* — Coming Soon Layout — */
.coming-soon-section {
  background: radial-gradient(ellipse at top, #0f172a 0%, #0a0e1b 100%);
  padding: 8rem 2rem 6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.typewriter-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  text-align: center;
  color: #0a84ff;
  text-shadow: 0 0 3px #0a84ff, 0 0 7px #0a84ff;
  margin-top: 90px ;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #d3d6da;
  display: inline-block;
  animation:
    typing 2s steps(20, end) forwards,
    blink 0.75s step-end infinite;
  width: 0ch; /* Startzustand */
    line-height: 0.9;           /* ↓ Cursor wird kürzer */
  vertical-align: bottom;     /* optional feintunen */
}

@keyframes typing {
  from {
    width: 0ch;
  }
  to {
    width: 12ch; /* exakt 20 Zeichen – anpassen an tatsächliche Länge */
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.highlight-hub {
  color: #ff6f3c; /* z. B. Orange (dein Primärfarbton) */
  font-weight: 900;
}


.coming-subtitle {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  font-weight: 400;
  color: #ddd;
  margin-top: 0.9rem;
  text-align: center;
  opacity: 0.9;
}

/* — Card Grid — */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
 /* 🧊 Ultra-Style Coming Soon */
.coming-soon-section {
  text-align: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, #0c1b33, #111827);
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 111, 60, 0.2), transparent 70%);
  z-index: 0;
  filter: blur(100px);
}

.card-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

@media (min-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  perspective: 1000px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 16px 50px rgba(255, 111, 60, 0.4);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
}

.feature-card p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.6;
}

.feature-card ul li {
  margin-bottom: 0.4rem;
}

.feature-card .icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px var(--primary);
  transition: text-shadow 0.4s ease;
}

.feature-card:hover .icon {
  text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

.feature-card .tag {
  margin-top: 1rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
  backdrop-filter: blur(4px);
}

.tag.accent {
  background: var(--primary);
   color: #fff;
  animation: subtleBlink 1.4s ease-in-out infinite;
}
@keyframes subtleBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.tag.live-status {
  position: relative;
  padding-left: 1.6rem;
}

.tag.live-status::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #4ade80; /* weiches Grün */
  border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
}
@keyframes greenPulse {
  0%, 100% {
    box-shadow: 0 0 6px #4ade80;
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 12px #4ade80;
    transform: translateY(-50%) scale(1.1);
  }
}

.tag.live-status::before {
  /* … wie oben … */
  animation: greenPulse 1.6s infinite ease-in-out;
}


/* Newsletter */
.notify-box {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.notify-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 500px) {
  .notify-form {
    flex-direction: row;
  }
}

.notify-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: background 0.3s;
}

.notify-form input:focus {
  background: rgba(255, 255, 255, 0.1);
}

.notify-form button {
  padding: 0.9rem 1.2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: #ff8758;
}
.upload-label {
  color: #ff6f3c; /* z. B. Orange für „Upload“ */
  font-weight: 700;
}
.menu-label {
  font-size: 0.65rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fc9d30;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 0.75;
}
.fade-bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(12, 27, 51, 0), rgba(12, 27, 51, 1));
  z-index: 5;
}
