	:root {
      --primary: #ff4d88;
      --background: #1a1a1a;
      --text: #f5f5f5;
      --accent: #ff99cc;
      --footer: #111;
      --section1: #202020;
      --section2: #262626;
      --section3: #1f1f1f;
      --section4: #2b2b2b;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--background);
      color: var(--text);
      overflow-x: hidden; /* verhindert horizontal scroll wenn Sidebar offen */
    }

    /* Menü-Button oben links */
    #menu-button {
      position: fixed;
      top: 15px;
      left: 15px;
      width: 35px;
      height: 30px;
      cursor: pointer;
      z-index: 11000;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    /* Hamburger Striche */
    #menu-button span {
      display: block;
      height: 4px;
      background-color: var(--accent);
      border-radius: 2px;
      transition: 0.3s;
    }
    #menu-button span:nth-child(1) {
      width: 100%;
    }
    #menu-button span:nth-child(2) {
      width: 75%;
      align-self: flex-end;
    }
    #menu-button span:nth-child(3) {
      width: 50%;
      align-self: flex-start;
    }

    /* Sidebar */
    #sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100vh;
      background-color: var(--section1);
      box-shadow: 2px 0 10px rgba(0,0,0,0.7);
      padding: 60px 20px 20px 20px;
      box-sizing: border-box;
      transition: left 0.3s ease;
      z-index: 10999;
      display: flex;
      flex-direction: column;
    }

    #sidebar.open {
      left: 0;
    }

    #sidebar a {
      color: var(--accent);
      text-decoration: none;
      font-size: 1.2rem;
      padding: 12px 0;
      border-bottom: 1px solid #444;
      transition: color 0.3s ease;
    }

    #sidebar a:hover {
      color: #fff;
    }

    /* Overlay, wenn Sidebar offen ist */
    #overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.6);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 10998;
    }

    #overlay.active {
      opacity: 1;
      visibility: visible;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: linear-gradient(to right, #33001b, #ff4d88);
      flex-wrap: wrap;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      gap: 20px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    header img {
      height: 80px;
      border-radius: 8px;
    }

    header h1 {
      margin: 0;
      color: white;
      font-weight: bold;
      text-shadow: 0 0 8px var(--primary), 0 0 12px var(--primary);
      font-size: 2.8rem;
      line-height: 1.1;
      word-break: keep-all;
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      header h1 {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
        text-align: center;
        white-space: normal;
      }
    }
	
	/* Desktop: Menü immer sichtbar */
	@media (min-width: 1500px) {
	#sidebar {
		left: 0 !important;
		box-shadow: none;
	}
	#menu-button {
		display: none;
	}
	#overlay {
		display: none !important;
	}
	
  body {
    overflow-x: hidden; /* kein Scrollen wegen Sidebar */
  }
}

    .section {
      padding: 50px 20px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section:nth-of-type(1) { background-color: var(--section1); }
    .section:nth-of-type(2) { background-color: var(--section2); }
    .section:nth-of-type(3) { background-color: var(--section3); }
    .section:nth-of-type(4) { background-color: var(--section4); }

    .section h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--accent);
      margin-bottom: 15px;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }

    .section p {
      font-size: 1.1em;
      line-height: 1.6em;
    }

    .preview-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-scroll {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding: 10px 40px;
      scroll-behavior: smooth;
      max-width: 90vw;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .preview-scroll::-webkit-scrollbar {
      display: none;
    }

    .preview-scroll img,
    .preview-scroll video {
      height: 200px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      transition: transform 0.3s;
      cursor: pointer;
    }

    .preview-scroll img:hover,
    .preview-scroll video:hover {
      transform: scale(1.05);
    }

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      font-size: 2.5em;
      color: var(--accent);
      cursor: pointer;
      z-index: 10;
      padding: 10px;
      transition: color 0.3s;
    }

    .nav-button:hover {
      color: white;
    }

    .nav-button.left {
      left: 10px;
    }

    .nav-button.right {
      right: 10px;
    }

    footer {
      background-color: var(--footer);
      text-align: center;
      padding: 25px;
      font-size: 0.9em;
      color: #bbb;
      border-top: 1px solid #333;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      user-select: none;
    }

    #lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 77, 136, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #lightbox-content img,
    #lightbox-content video {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .lightbox-close {
      position: absolute;
      top: 15px;
      right: 25px;
      font-size: 3em;
      color: #ff4d88;
      cursor: pointer;
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
      z-index: 10000;
      text-shadow: 0 0 5px #ff4d88, 0 0 10px #ff4d88;
    }

    .lightbox-close:hover {
      color: #ff99cc;
      text-shadow: 0 0 10px #ff99cc, 0 0 20px #ff99cc;
    }

    /* Navigation Pfeile ohne Umrandung, direkt am Bild */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 3rem;
      color: rgba(255, 77, 136, 0.7);
      background: transparent;
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      user-select: none;
      z-index: 10001;
      transition: color 0.3s ease;
      line-height: 1;
      box-shadow: none;
      filter: none;
      width: auto;
      height: auto;
    }

    .lightbox-nav.left {
      left: -40px; /* 40px links neben Bild */
    }

    .lightbox-nav.right {
      right: -40px; /* 40px rechts neben Bild */
    }

    .lightbox-nav:hover {
      color: #ff4d88;
    }

    @media (max-width: 600px) {
      .section h2 {
        font-size: 1.3em;
      }
      .section p {
        font-size: 1em;
      }
      .lightbox-nav.left {
        left: -25px;
      }
      .lightbox-nav.right {
        right: -25px;
      }
    }
	
	
	#sticky-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: black;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#sticky-banner.visible {
  opacity: 1;
  pointer-events: auto;
}

#vorschaubilder,
#abo {
  background-color: var(--section2); /* hellgrau */
}

#wer-ich-bin,
#vorschauvideo {
  background-color: var(--section1); /* dunkler, fast schwarz */
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.contact-form label {
    color: var(--accent);
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--section1);
    color: var(--text);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
}

.contact-form button {
    background-color: var(--accent);
    color: var(--background);
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--primary);
}

#contact-response {
  margin-top: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#contact-response.success {
  background-color: #28a745; /* schönes, sattes Grün */
  box-shadow: 0 0 15px #28a745cc;
}

#contact-response.error {
  background-color: #dc3545; /* ein kräftiges Rot */
  box-shadow: 0 0 15px #dc3545cc;
}


.message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 1.1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: bold;
}

.message.success {
  background-color: #4CAF50; /* Grün */
  color: white;
  box-shadow: 0 0 10px #4CAF50aa;
}

.message.error {
  background-color: #f44336; /* Rot */
  color: white;
  box-shadow: 0 0 10px #f44336aa;
}



.abo-button {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.abo-button:hover {
    background: var(--accent);
}

.abo-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abo-form input, 
.abo-form select {
    width: 80%;
    padding: 10px;
    border: 2px solid var(--accent); /* Sichtbarer, femininer Rahmen */
    border-radius: 6px;
    background: var(--section1);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.abo-form input:focus,
.abo-form select:focus {
    border-color: var(--primary); /* Beim Klicken wird's etwas kräftiger */
    outline: none;
}


.abo-form button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.abo-form button:hover {
    background: var(--accent);
}

.green {
    color: #4CAF50; /* schönes, freundliches Grün */
    font-weight: bold;
}
.red {
    color: #E53935; /* sattes, klares Rot */
    font-weight: bold;
}

.headline-box {
    border: 2px solid #E91E63; /* dein Pink-Akzent, oder Wunschfarbe */
    color: #E91E63;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
    display: inline-block;
    background-color: rgba(233, 30, 99, 0.05); /* dezentes Rosa im Hintergrund */
}
