/* === Reset & Grundlayout === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/hintergrund.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  transition: all 0.3s ease;
}

img,
svg,
video,
embed,
iframe {
  max-width: 100%;
}

/* === Hauptlayout === */
.layout {
  display: flex;
  min-height: 100vh;
  gap: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

/* === Sidebar === */
.sidebar {
  background-color: #11111de0;
  color: white;
  border-radius: 2rem;
  width: 236px;
  min-width: 130px;
  min-height: 90vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;

  z-index: 1000;
}

/* Wenn Sidebar eingeklappt ist */
.layout.sidebar-collapsed .sidebar {
  width: 0;
  min-width: 0;
  transform: translateX(-100%);
  overflow: hidden;
  padding: 0;
}

.sidebar.collapsed {
  transform: translateX(-280px);
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-nav a {
  color: #66ccff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: background 0.3s;
  background-color: #1d1d2be0;
}

.sidebar-nav a:hover {
  background-color: #6f6f6f;
}

.sidebar-logo img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 16px solid #6f6f6f;
  background-color: #6f6f6f;
}

.sidebar-bottom img {
  width: 100%;
  border-radius: 1rem;
  margin-top: 2rem;
  border: 16px solid #6f6f6f;
  background-color: #6f6f6f;
}

/* Toggle Button für Sidebar */
.sidebar-toggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: #66ccff;
  border: none;
  z-index: 1000;
  cursor: pointer;
  padding: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.sidebar-toggle img {
  width: 228px;
  height: 40px;
}

/* === Hauptinhalt === */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* === Sektionen === */
section {
  background: #11111de0;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 3rem;
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
}

h1,
h2 {
  color: #66ccff;
  margin-bottom: 1rem;
}

/* === Galerie === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
  z-index: 2;
}

/* === Formular === */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea,
button {
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

input,
textarea {
  background: #222;
  color: #fff;
}

button {
  background-color: #66ccff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #33bbee;
}

/* === Footer === */
footer {
  text-align: center;
  margin-top: 4rem;
  color: #777;
  font-size: 0.9rem;
}

/* === Hero Section === */
.hero {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.4);
}

.hero .highlight {
  color: #66ccff;
}

.subheading {
  font-size: 1.25rem;
  color: #ccc;
}

/* === Intro & Mission === */
.intro p,
.mission p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

/*******************/
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox.hidden {
  display: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  opacity: 0.6;
  cursor: pointer;
  user-select: none;
  padding: 0 1rem;
  z-index: 1001;
}

.lightbox-arrow:hover {
  opacity: 1;
}

.lightbox-arrow.left {
  left: 2vw;
}

.lightbox-arrow.right {
  right: 2vw;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  opacity: 0.6;
  z-index: 1002;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.2);
}

.pdf-container {
  width: 100%;
  height: 80vh;
  /* 80% der Bildschirmhöhe */
}

.pdf-container embed {
  width: 100%;
  height: 100%;
  border: none;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-decoration: none;
}

.gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(102, 204, 255, 0.5);
}

.gallery-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: white;
  border-radius: 50%;
  padding: 0.5rem;
}

.gallery-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #66ccff;
}

.gallery-card p {
  font-size: 0.9rem;
  color: #ccc;
  flex-grow: 1;
}

.sidebar-nav .with-icon {
  display: flex;
  align-items: center;
}

.sidebar-nav .with-icon svg {
  flex: 0 0 auto;
}


/* === Paket Layouts === */
/* === Paket Layouts === Für Leistungen.astro */
/* === Paket Layout – ausgewogen und stabil === */
/* === Paket-Layout mit versetztem Kartenstil === */

/* Grundlayout für jede Paket-Sektion */
.features.paket {
  padding: 2rem;
  background: #11111de0;
  border-radius: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hauptinhalt: Bild + Text nebeneinander */
.paket-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Paket 2: Text rechts, Bild links */
.paket-content.right {
  flex-direction: row-reverse;
}

/* Textspalte */
.paket-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}

/* Bildspalte */
.paket-img-wrapper {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 420px;
  /* Harmonisch für 6–8 Textzeilen */
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.paket-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  /* Zeigt oberen Bildteil bevorzugt */
  border-radius: 1.2rem;
  transition: transform 0.3s ease;
}

.paket-img:hover {
  transform: scale(1.03);
}

/* === Versetzter Kartenstil === */
/* Paket 1 – leicht rechts eingerückt */
.features.paket:nth-of-type(2) {
  margin-right: 5%;
  padding-right: 3%;
}



/* Paket 2 – leicht links eingerückt */
.features.paket:nth-of-type(3) {
  margin-left: 5%;
  padding-left: 3%;
}

/* Optionaler Hover-Effekt für Tiefe */
.features.paket:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(102, 204, 255, 0.5);
}

/* === Mobile Layout: Bild über Text, keine Einrückung === */
@media (max-width: 900px) {
  .paket-content {
    flex-direction: column;
  }

  .paket-img-wrapper {
    width: 100%;
    max-height: none;
  }

  .features.paket {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* === Individuelle Leistungen Layout === */
.features.individuell {
  padding: 2rem;
  background: #11111de0;
  border-radius: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.individuell-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.individuell-text {
  flex: 1 1 50%;
  text-align: center;
}

.individuell-img {
  flex: 1 1 22%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 380px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.individuell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.individuell-img img:hover {
  transform: scale(1.03);
}

/* Mobile Ansicht: Bilder über/unter Text */
@media (max-width: 900px) {
  .individuell-wrapper {
    flex-direction: column;
  }

  .individuell-img {
    max-height: none;
    width: 100%;
  }

  .individuell-text {
    text-align: left;
  }
}

/* === Zubuchoptionen Grid === */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.option-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(102, 204, 255, 0.5);
}

.option-card h3 {
  color: #66ccff;
  margin-bottom: 0.75rem;
}

.option-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #222;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #66ccff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.45);
  padding: 2rem;
  margin-bottom: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
/* === Media Queries für mobile Responsivität === */
@media (max-width: 900px) {

  html,
  body {
    height: auto;
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
  }

  .layout {
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.75rem;
    min-height: auto;
  }

  .sidebar {
    position: static;
    width: 100%;
    min-width: 0;
    min-height: auto;
    border-radius: 1rem;
    padding: 0.75rem;
    margin-top: 0;
  }

  .sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    justify-items: stretch;
  }

  .sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .sidebar-nav .with-icon {
    justify-content: center;
  }

  .sidebar-bottom img {
    display: none;
  }

  .sidebar-toggle {
    display: none;
  }

  .main-content {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    width: 100%;
  }

  section,
  .features.paket,
  .features.individuell,
  .heading {
    padding: 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  section:hover,
  .features.paket:hover,
  .gallery-card:hover,
  .option-card:hover {
    transform: none;
  }

  .grid,
  #gallery,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .paket-content,
  .paket-content.right {
    flex-direction: column;
  }

  .paket-text,
  .individuell-text {
    text-align: left;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .subheading {
    font-size: 0.9rem;
  }

  .features h2 {
    font-size: 1.1rem;
  }

  .features li {
    font-size: 0.9rem;
  }

  .pdf-container {
    height: 60vh;
    /* Weniger Platz auf kleinen Bildschirmen */
  }

  .sidebar.collapsed {
    transform: translateY(-100%);
    pointer-events: none;
  }

}

@media (max-width: 480px) {
  .layout {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .sidebar {
    padding: 0.5rem;
  }

  .sidebar nav {
    gap: 0.35rem;
  }

  .sidebar-nav a {
    font-size: 0.9rem;
    padding: 0.55rem 0.5rem;
  }

  .main-content {
    padding: 0.5rem;
  }

  section,
  .features.paket,
  .features.individuell,
  .heading {
    padding: 1rem;
  }
}

/* === Modernisierte Oberflaeche === */
:root {
  --bg: #0b090d;
  --panel: rgba(22, 18, 23, 0.82);
  --panel-strong: rgba(27, 22, 29, 0.94);
  --panel-soft: rgba(255, 245, 232, 0.09);
  --line: rgba(255, 231, 205, 0.16);
  --text: #fff8ef;
  --muted: #d6c8b9;
  --blue: #66ccff;
  --orange: #eb8136;
  --gold: #ffd08a;
  --rose: #ff8f70;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
  --radius-lg: 24px;
  --radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: -28px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(11, 8, 11, 0.82), rgba(21, 14, 18, 0.48) 44%, rgba(28, 17, 13, 0.72)),
    url('/hintergrund.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(18px) saturate(1.08) brightness(0.74);
  transform: scale(1.04);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 208, 138, 0.22), transparent 27%),
    radial-gradient(circle at 82% 22%, rgba(102, 204, 255, 0.16), transparent 24%),
    linear-gradient(160deg, transparent 52%, rgba(235, 129, 54, 0.18)),
    rgba(8, 6, 10, 0.28);
  z-index: -1;
}

.layout {
  gap: 1.25rem;
  padding: 1.25rem;
}

.sidebar,
.main-content,
section,
.features.paket,
.features.individuell,
.heading,
.gallery-card,
.option-card {
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sidebar {
  position: sticky;
  top: 1.25rem;
  align-self: flex-start;
  justify-content: flex-start;
  gap: 0.85rem;
  background:
    linear-gradient(180deg, rgba(29, 23, 29, 0.94), rgba(16, 13, 18, 0.86)),
    linear-gradient(135deg, rgba(255, 208, 138, 0.1), transparent 50%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.sidebar-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.35rem 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.sidebar-brand::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
}

.sidebar-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.sidebar-brand span {
  display: grid;
  gap: 0.05rem;
}

.sidebar-brand strong {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.1;
}

.sidebar-brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.sidebar nav {
  gap: 0.55rem;
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 248, 239, 0.035);
  border: 1px solid rgba(255, 231, 205, 0.08);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-nav a:hover {
  color: #1b1110;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(3px);
}

.main-content {
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

section,
.features.paket,
.features.individuell,
.heading {
  background:
    linear-gradient(180deg, var(--panel-strong), rgba(18, 14, 20, 0.84)),
    linear-gradient(135deg, rgba(255, 208, 138, 0.08), transparent 45%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

section:hover {
  transform: translateY(-3px);
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
  color: var(--gold);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

h3 {
  color: var(--text);
}

p,
li {
  color: var(--muted);
}

strong {
  color: var(--text);
}

.subheading {
  color: var(--muted);
  max-width: 780px;
  margin-inline: auto;
}

.heading {
  position: relative;
  overflow: hidden;
}

.heading::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--blue), transparent);
  opacity: 0.8;
}

.btn-primary,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #1b1110;
  font-weight: 800;
  text-decoration: none;
  padding: 0.8rem 1.25rem;
  box-shadow: 0 14px 34px rgba(235, 129, 54, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.button:hover,
button:hover {
  background: linear-gradient(135deg, var(--orange), var(--rose));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(235, 129, 54, 0.24);
}

input,
textarea {
  background: rgba(255, 248, 239, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(102, 204, 255, 0.42);
  border-color: var(--blue);
}

.grid {
  gap: 1.1rem;
}

.grid img,
.gallery-image,
.card-image img,
.paket-img,
.individuell-img img,
.option-card img {
  border-radius: var(--radius-md);
}

.gallery-image,
.card-image img,
.paket-img,
.option-card img {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.gallery-card,
.option-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.1), rgba(255, 248, 239, 0.045)),
    var(--panel-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.option-card {
  padding: 1.1rem;
}

.option-card h3,
.gallery-card h3 {
  color: var(--gold);
}

.features li::before {
  content: "";
  top: 0.56rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 0 4px rgba(102, 204, 255, 0.1);
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  .layout {
    padding: 0.75rem;
  }

  .sidebar {
    position: static;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-radius: 16px;
  }

  .sidebar-brand {
    justify-content: flex-start;
    gap: 0.55rem;
    margin: 0;
    padding: 0.1rem;
    border-bottom: 0;
  }

  .sidebar-brand::after {
    display: none;
  }

  .sidebar-brand img {
    width: 36px;
    height: 36px;
  }

  .sidebar-brand strong {
    font-size: 0.92rem;
  }

  .sidebar-brand small {
    font-size: 0.68rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0.45rem 0.5rem 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 248, 239, 0.04);
    color: var(--muted);
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 650;
  }

  .mobile-menu-label {
    display: none;
  }

  .mobile-menu-icon {
    display: grid;
    gap: 4px;
    width: 18px;
  }

  .mobile-menu-icon span {
    display: block;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .sidebar[data-menu-open] .mobile-menu-icon span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .sidebar[data-menu-open] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .sidebar[data-menu-open] .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .sidebar nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    z-index: 10;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.55rem 0.85rem 0.75rem;
    background: rgba(22, 17, 22, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  }

  .sidebar[data-menu-open] nav {
    display: grid;
  }

  .sidebar-nav a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0.7rem 0.45rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 231, 205, 0.1);
    font-size: 0.86rem;
  }

  .sidebar-nav a.with-icon {
    justify-content: flex-start;
  }

  .sidebar-nav a:nth-child(odd) {
    padding-right: 0.75rem;
  }

  .sidebar-nav a:nth-child(even) {
    padding-left: 0.75rem;
  }

  .sidebar-nav a.nav-contact {
    grid-column: 1 / -1;
    order: -1;
    justify-content: center;
    margin: 0.2rem 0 0.45rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border-bottom: 0;
  }

  .sidebar-nav a:hover {
    transform: none;
  }

  .main-content,
  section,
  .features.paket,
  .features.individuell,
  .heading {
    border-radius: 18px;
  }

  .btn-primary,
  .button,
  button:not(.mobile-menu-toggle) {
    width: 100%;
  }
}
