/* ================================
   Design-Variablen
================================ */
:root{
  --bg: #eef2f6;
  --fg: #0f172a;
  --window-bg-grad-a: #111827;
  --window-bg-grad-b: #1f2937;
  --titlebar: #2a3441;
  --border: rgba(255,255,255,0.08);
  --inner-border: rgba(255,255,255,0.06);
  --shadow: 0 20px 60px rgba(0,0,0,0.25), 0 3px 14px rgba(0,0,0,0.18);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.18);
}

body.dark{
  --bg: #0b1220;
  --fg: #e5e7eb;
  --window-bg-grad-a: #0f172a;
  --window-bg-grad-b: #1f2937;
  --titlebar: #293241;
}

/* ================================
   Grundlayout
================================ */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;                 /* Seite selbst nicht scrollen */
}

/* ================================
   Tablet-Anpassungen (max-width: 1024px)
================================ */
@media (max-width: 1024px) {

  /* Text & Headlines */
  .headline { font-size: 4rem; }
  .subline { font-size: 4rem; }
  h4 { font-size: 2rem; }  /* für Unterüberschriften */
  p { font-size: 1.5rem; line-height: 1.6; }
  h2 { font-size: 4rem; }

  /* Buttons */
  .btn,
  .btn-link2,
  .fenster .kontakt-form button[type="submit"] {
    font-size: 1.5rem;
    padding: 10px 10px;
  }
  .back-button {
    font-size: 4rem;       /* größere Schrift */
    padding: 14px 18px;      /* mehr Klickfläche */
  }

  /* Tiles / Galerie */
  .gallery-grid,
  .screenshot-gallery.small,
  .screenshot-gallery.web {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .gallery-item img,
  .screenshot-gallery img {
    height: auto;
    min-height: 220px;
  }

  /* Fenster Content */
  .fenster .content { padding: 40px 30px; }
}



/* Arbeitsfläche (keine Klick-Blocker!) */
.desktop{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 9rem;
  overflow: hidden;
}

/* ================================
   Toolbar (groß)
================================ */
.toolbar{
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
  z-index: 9000;
}
.toolbar button{
  width: 48px; height: 48px; font-size: 22px;
  border: none; border-radius: 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
.toolbar button:hover{ transform: scale(1.1); background: rgba(255,255,255,0.9); }
body.dark .toolbar button{ background: rgba(255,255,255,0.15); }
/* 📱 Mobile Anpassung */
@media (max-width: 1024px) {
  .toolbar button {
    width: 90px;
    height: 90px;
    font-size: 40px;
    border-radius: 14px;
  }
}
/* ================================
   Fenster (Allgemein)
================================ */
.fenster{
  position: absolute;
  width: min(880px, 90vw);
  background: linear-gradient(180deg, var(--window-bg-grad-a), var(--window-bg-grad-b));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: bottom left;
  transition: transform .28s ease, opacity .28s ease;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 60px);
  z-index: 700;                     /* über Hauptordner */
}
.fenster::after{
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--inner-border);
}
.fenster.is-minimized{
  transform: scale(.96) translateY(12px);
  opacity: 0;
  pointer-events: none;
}
/* Maximiert: Geometrie setzt JS inline; hier nur Optik */
.fenster.is-maximized{
  overflow: auto;
  border-radius: 14.5px 0 0 14.5px; /* nur links rund */
}
.fenster.is-maximized {
  left: 104px !important;
  top: 0 !important;
  width: calc(100vw - 104px);
  height: 100vh;
  max-width: none;
  max-height: none;
  overflow: auto;
}

/* Tablet & Handy: Fenster immer maximal */
@media (max-width: 1024px) {
  .fenster {
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 180px) !important; /* unten Platz lassen */
    max-width: 100vw !important;
    max-height: calc(100vh - 180px) !important;
    border-radius: 12px 12px 0 0 !important; /* oben rund, unten flach */
  }
}



/* Titelzeile */
.titlebar{
  height: 45px;
  background: var(--titlebar);
  display: flex;
  align-items: center;
  justify-content: center;     /* Titel in die Mitte */
  position: relative;          /* für absolute Buttons */
  padding: 0 12px;
  border-bottom: 1px solid var(--inner-border);
  color: #cbd5e1;
  user-select: none;
  cursor: move;
}
.titlebar .title{
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.titlebar .window-buttons{
  position: absolute;          /* Buttons links fixieren */
  left: 15px;
  display: flex;
  gap: 4px;
}
@media (max-width: 1024px) {
  .titlebar{height: 100px}

.titlebar .title{
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .02em;
}
}

/* Buttons */
.window-buttons button{
  width: 13px; height: 13px; border-radius: 50%; border: none;
  margin-right: 6px; padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  cursor: pointer;
}
.btn-close{    background: #ff5f57; }
.btn-minimize{ background: #ffbd2e; }
.btn-maximize{ background: #28c940; }

/* Hauptordner: Buttons deaktiviert */
.fenster[data-locked="true"] .window-buttons button{
  background: #6b7280 !important; cursor: default; opacity: .5; pointer-events: none;
}
@media (max-width: 1024px) {
  .window-buttons button{
  width: 38px; height: 38px; border-radius: 50%; border: none;
  margin-right: 10px; padding: 0;
  margin-left: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  cursor: pointer;
}
}

/* ================================
   Hauptordner (zentriert & groß)
================================ */
/* Main-Folder Standard (Desktop) */
#main-folder {
  position: fixed;
  top: 20%;        /* Abstand vom oberen Rand */
  left: 50%;        /* horizontal zentrieren */
  transform: translateX(-50%); /* nur horizontale Zentrierung */
  width: min(1100px, 95vw);
  min-height: 600px;
  max-height: 90vh;
  z-index: 300;     /* unter normalen Fenstern */
}

/* Inhalt innerhalb Main-Folder */
#main-folder .content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  padding: 100px 20px 40px 20px; /* responsive Padding */
}

/* Headlines */
#main-folder .headline{
  font-size: 3rem;
  font-weight: 800;
  color: #f3f4f6;
  margin: 0 0 .5rem 0;
}
#main-folder .subline{
  font-size: 1.5rem;
  color: #cbd5e1;
  margin: 0 0 4rem 0;
}

/* Tablet */
@media (max-width: 1024px)  {    
 #main-folder {
    position: fixed;
    top: 20px;                      /* Abstand oben */
    left: 50%;                       /* horizontal zentrieren */
    transform: translateX(-0%);
    width: min(95vw, 700px);        /* nie breiter als 700px, sonst 95% des Viewports */
    height: calc(100vh - 40px);     /* oben + unten Abstand */
    border-radius: 12px;
    overflow: auto;
  }


#main-folder .headline{
  font-size: 5rem;
  font-weight: 800;
  color: #f3f4f6;
  margin: 0 0 .5rem 0;
}

#main-folder .subline{
  font-size: 3rem;
  color: #cbd5e1;
  margin: 0 0 4rem 0;
}
}




/* ================================
   Folder-Tiles
================================ */
.folder-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 56px;
  justify-items: center;
}
.folder-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.folder-tile{
  width: 95px; height: 95px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.85);   /* schwarzer Rand */
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.28); /* deutlicher Schatten */
  color: #e5e7eb; font-size: 32px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer; user-select: none;
}
.folder-tile:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.12);
}
.folder-label{
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #cbd5e1;
  text-align: center;
  cursor: pointer; user-select: none;
}
.folder-label:focus, .folder-tile:focus{
  outline: 2px solid rgba(255,255,255,0.4);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (max-width: 1024px)  {    
.folder-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  justify-items: center;
}
  /* Folder-Item Icons vergrößern */
  .folder-item button {
    width: 170px;       /* vorher z. B. 48px */
    height: 170px;
    font-size: 60px;   /* Icon-Symbol vergrößern */
  }
.folder-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.folder-tile{
  width: 170px; height: 170px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.85);   /* schwarzer Rand */
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.28); /* deutlicher Schatten */
  color: #e5e7eb; font-size: 32px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer; user-select: none;
}
.folder-tile:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.12);
}
.folder-label{
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 7000;
  color: #cbd5e1;
  text-align: center;
  cursor: pointer; user-select: none;
}
}

/* ================================
   Dock (links mittig, glossy)
================================ */
#dock{
  position: fixed;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; padding: 7px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 18px; box-shadow: var(--shadow-soft);
  z-index: 9000;
}
#dock button{
  width: 48px; height: 48px; font-size: 26px; line-height: 1;
  border: none; border-radius: 12px;
  background: transparent; color: #e5e7eb;
  position: relative;
  transition: transform .14s ease;
}
#dock button:hover{ transform: scale(1.12); }
#dock button.has-minimized::after{
  content: ""; position: absolute;
  width: 6px; height: 6px; bottom: 6px; right: 6px;
  border-radius: 50%; background: #22c55e;
}

/* Tablet-Anpassung */
/* Tablet-Anpassung: Dock unten mittig */
@media (max-width: 1024px) {
  #dock {
    left: 50%;                /* horizontal zentrieren */
    bottom: 160px;             /* Abstand zum unteren Rand */
    top: auto;                /* top deaktivieren */
    transform: translateX(-50%); /* nur horizontal zentrieren */
    flex-direction: row;      /* Buttons nebeneinander */
    gap: 12px;
    padding: 8px 10px;
  }

  #dock button {
    width: 90px;
    height: 90px;
    font-size: 60px;
    border-radius: 12px;
  }
}



/* ================================
   Welle (breit & schwappend)
================================ */
#wave{
  position: fixed;
  left: 0; right: 0; bottom: 0; height: 220px;
  z-index: 1; overflow: hidden; pointer-events: none;
}
#wave::before, #wave::after{
  content: "";
  position: absolute; left: -100%; right: -100%; bottom: -90px; height: 360px;
  background: radial-gradient(circle at 50% 50%, #60a5fa 0%, #8b5cf6 48%, #06b6d4 100%);
  opacity: .55; filter: blur(2px); border-radius: 100%;
  animation: waveSlide 9.5s ease-in-out infinite;
}
#wave::after{
  opacity: .35; height: 380px; bottom: -108px;
  animation-duration: 14.5s; animation-direction: reverse;
}
@keyframes waveSlide{
  0%   { transform: translateX(-28%) translateY(0)    scale(1.06); }
  25%  { transform: translateX( 20%) translateY(32px) scale(1.08); }
  50%  { transform: translateX( 28%) translateY(0)    scale(1.06); }
  75%  { transform: translateX(-20%) translateY(32px) scale(1.08); }
  100% { transform: translateX(-28%) translateY(0)    scale(1.06); }
}

@media (max-width: 1024px) {
  #wave{
    height: 400px;
  }
}

/* ================================
   Work-Bereich (Meine Arbeit)
================================ */
.work .work-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(95px, auto));
  justify-content: center;
  justify-items: center;
  align-items: start;
  gap: 40px;
  width: 100%;
  margin-top: 12px;
}
.work .work-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.work .folder-tile{ position: static; }
.work .folder-label{
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: #cbd5e1;
}
.work .folder-label:focus{
  outline: 2px solid rgba(255,255,255,0.4);
  outline-offset: 2px;
  border-radius: 6px;
}
.work-detail.is-hidden{ display: none; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.card{
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--inner-border);
  border-radius: 12px;
  padding: 14px;
  color: #e5e7eb;
  text-align: center;
}

.tabs .tab-row{ display: flex; gap: 8px; }
.tab{
  padding: 8px 12px; border-radius: 10px; border: 1px solid var(--inner-border);
  background: rgba(255,255,255,0.06); color: #e5e7eb; cursor: pointer;
}
.tab.is-active{ background: rgba(255,255,255,0.14); }
.panes .pane{ display: none; }
.panes .pane.is-active{ display: block; }

@media (max-width: 1024px) {
  .work .work-grid {
    grid-template-columns: repeat(3, minmax(70px, auto)); /* kleinere Tiles */
    gap: 32px;  /* Abstand verringern */
  }
  
  .work .folder-label {
    font-size: 2rem; /* kleinere Beschriftung */
    margin-top: 4px;
  }
}


/* ================================
   Typo / Hilfsklassen
================================ */
.h2{ font-size: 1.5rem; margin: 0 0 .5rem 0; color: #f3f4f6; }
.stack.v16 > * + *{ margin-top: 16px; }
.bullet{ padding-left: 18px; color: #cbd5e1; }
.bullet li{ margin: 6px 0; }

.chip-row{ display: flex; gap: 10px; flex-wrap: wrap; }
.chip{
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--inner-border);
  color: #e5e7eb; text-decoration: none; background: rgba(255,255,255,0.06);
}
.chip:hover{ background: rgba(255,255,255,0.12); }

.btn{
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}
.btn-link{
  display: inline-block; padding: 5px 5px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}

.btn-link2{
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}
.btn-link3{
  display: inline-block; padding: 4px 4px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}

@media (max-width: 1024px) {
  .h2{ font-size: 4rem; margin: 0 0 .5rem 0; color: #f3f4f6; }
.stack.v16 > * + *{ margin-top: 16px; }
.bullet{ padding-left: 18px; color: #cbd5e1; }
.bullet li{ margin: 6px 0; }
.bullet li{ font-size: 2rem; line-height: 1.6; }
h3{ font-size: 3rem; }

.chip-row{ display: flex; gap: 10px; flex-wrap: wrap; }
.chip{
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--inner-border);
  color: #e5e7eb; text-decoration: none; background: rgba(255,255,255,0.06);
}
.chip:hover{ background: rgba(255,255,255,0.12); }

.btn{
  display: inline-block; padding: 30px 30px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}
.btn-link{
  display: inline-block; padding: 5px 5px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}

.btn-link2{
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}
.btn-link3{
  display: inline-block; padding: 8px 4px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #e5e7eb; text-decoration: none;
  border: 1px solid var(--inner-border);
}
}

.btn:hover{ background: rgba(255,255,255,0.18); }

/* Container, damit der Text abgeschnitten wird */
#text {
  max-height: 60px;           /* sichtbare Höhe */
  overflow: hidden;           /* Rest wird abgeschnitten */
  transition: max-height 0.3s ease;
}

#text.expanded {
  max-height: 500px;          /* genug Platz für ganzen Text */
}

/* optional fürs Styling des Buttons */
#toggle {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: rgba(255,255,255,0.18);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.toggle-more {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
  #toggle,
  .toggle-more {
    padding: 12px 24px;       /* mehr Innenabstand */
    font-size: 1.4rem;        /* größere Schrift */
    border-radius: 6px;       /* optional runder */
  }
}


/* Optional: Hover-Effekt */
.toggle-more:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Standard-Galerie */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.screenshot-gallery img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  background: #fff;
}

/* Web Gallery */
.screenshot-gallery.web {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Breite der Karten größer */
  gap: 16px;
}

.screenshot-gallery.web img {
  width: 100%;       /* passt sich der Karte an */
  height: 450px;     /* höhere Bilder */
  object-fit: cover; /* Bild wird zugeschnitten und zentriert */
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screenshot-gallery.web img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}




/* Kleinere Variante: Grid-Galerie */
.screenshot-gallery.small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* oder wie du magst */
  gap: 16px;
}

.screenshot-gallery.small img {
  width: 100%;
  height: 400px; /* ✨ Höhe definieren */
  object-fit: cover; /* Bild wird zentriert & zugeschnitten */
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screenshot-gallery.small img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


/* ================================
   Kontaktformular (verfeinerte Version)
================================ */
.fenster .content .kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 600px;
  margin: 16px auto;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.fenster .content .kontakt-form:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.fenster .content .kontakt-form .row {
  display: flex;
  gap: 14px;
}

.fenster .content .kontakt-form input,
.fenster .content .kontakt-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-size: 1rem;
  color: #f1f5f9;
  resize: vertical;
  transition: all 0.25s ease;
}

.fenster .content .kontakt-form input::placeholder,
.fenster .content .kontakt-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fenster .content .kontakt-form input:focus,
.fenster .content .kontakt-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.fenster .content .kontakt-form button[type="submit"] {
  align-self: flex-end;
  padding: 12px 20px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.fenster .content .kontakt-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  filter: brightness(1.1);
}

.fenster .content .kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px; /* weniger Innenabstand */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  width: calc(100% - 16px); /* nur 8px Abstand links/rechts */
  max-width: none; /* volle Breite erlauben */
  margin: 32px auto 8px; /* oben/unten 8px Abstand */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.fenster .content .kontakt-form:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Kontaktformular für Handy größer */
@media (max-width: 1024px) {
  .fenster .content .kontakt-form {
    width: calc(100% - 16px);   /* fast volle Breite */
    padding: 40px 20px;         /* mehr Innenabstand */
    border-radius: 12px;        /* optional runder */
  }

  .fenster .content .kontakt-form input,
  .fenster .content .kontakt-form textarea {
    font-size: 40px;          /* größere Schrift */
    padding: 70px 30px;         /* mehr Platz zum Tippen */
  }

  .fenster .content .kontakt-form button[type="submit"] {
    font-size: 3rem;          /* größere Buttons */
    padding: 14px 20px;
  }
}


/* ================================
   Impressum/Datenschutz Buttons
================================ */
.legal-buttons{
  position: fixed;
  bottom: 12px; left: 10px;
  display: flex; gap: 12px;
  z-index: 9000;
}
.legal-buttons button{
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  backdrop-filter: blur(6px);
  color: inherit;
}
.legal-buttons button:hover{ background: rgba(255,255,255,0.2); }

@media (max-width: 1024px){
  .legal-buttons button{ font-size: 30px; padding: 8px 16px; }}

/* ================================
   Social-Bar (unten rechts)
================================ */
#social-bar{
  position: fixed;
  bottom: 12px; right: 10px;
  display: flex; gap: 12px;
  z-index: 9000;
}
#social-bar a{
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none; color: var(--fg);
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--inner-border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
}
#social-bar a:hover{ background: rgba(255,255,255,0.25); transform: scale(1.12); }

/* Tablet: Social Bar größer darstellen */
@media (max-width: 1024px) {
  #social-bar {
    bottom: 12px;
    right: 10px;
    gap: 12px;
  }

  #social-bar a {
    width: 60px;
    height: 55px;
    font-size: 6rem;
    border-radius: 14px;
    backdrop-filter: blur(10px);
  }
}




/* ================================
   Cookie-Banner
================================ */
.cookie-banner{
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(0,0,0,0.85); color: #fff;
  padding: 12px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 99999; flex-wrap: wrap;
}
.cookie-banner p{ flex: 1 1 auto; margin: 0 10px 10px 0; }
.cookie-buttons{ display: flex; gap: 20px; }
.cookie-banner button{
  background: #4ade80; border: none; padding: 8px 16px; border-radius: 6px; cursor: pointer;
}
.cookie-banner button#reject-cookies{ background: #f87171; }
.cookie-banner.hidden{ display: none; }

@media (max-width: 1024px) {
  .cookie-banner {
    padding: 40px 40px;        /* oben/unten mehr Abstand */
    min-height: 100px;           /* garantiert eine Mindesthöhe */
    font-size: 1.7rem;          /* größere Schrift für bessere Lesbarkeit */
  }

  .cookie-banner p {
    margin-bottom: 20px;
  }

  .cookie-banner button {
    padding: 12px 24px;
    font-size: 1.5rem;
    border-radius: 8px;
  }

  .cookie-buttons {
    gap: 16px;
    flex-wrap: wrap;
  }
}



/* ================================
   Responsive
================================ */
@media (max-width: 1100px){
  #main-folder{ width: min(1000px, 96vw); }
}
@media (max-width: 900px){
  .fenster:not(#main-folder){
    left: 50% !important; top: 50% !important;
    transform: translate(-50%, -50%) scale(0.95);
    max-width: 92vw; max-height: 86vh;
  }
  .folder-grid{ grid-template-columns: repeat(3, 1fr); gap: 36px; }
  #main-folder .subline{ margin-bottom: 3rem; }
}
@media (max-width: 600px){
  .folder-grid{ grid-template-columns: repeat(2, 1fr); gap: 28px; }
  #main-folder{ padding: 0 10px; }
  #main-folder .content{ padding: 60px 20px; }
}

/* === 1) Stabiler Innenabstand & Textfarbe im Fenster === */
.fenster .content{
  /* konsistenter Innenabstand (oben etwas mehr unter der Titlebar) */
  padding: 28px 40px 40px;
  /* Textfarbe im Fenster unabhängig vom Theme */
  color: #e5e7eb;
}
.fenster .content h1,
.fenster .content h2,
.fenster .content h3,
.fenster .content p,
.fenster .content li,
.fenster .content .folder-label,
.fenster .content .chip,
.fenster .content .btn{
  color: #e5e7eb; /* statisch hell, auch im Light-Mode */
}

/* Headline/Subline im Hauptordner bleiben mittig & sichtbar */
#main-folder .headline{ color:#f3f4f6; }
#main-folder .subline{ color:#cbd5e1; }

/* Titlebar-Text leicht optimieren */
.titlebar .title{ line-height: 1; }











/* About Me */
/* Container für Text + Slider */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.about-text {
  flex: 1 1 400px;
}

.about-slider {
  flex: 0 0 300px;
  position: relative; /* für Buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 16px;
}

/* Slider Buttons */
.about-slider button.prev,
.about-slider button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5em;
  padding: 0.2em 0.5em;
  cursor: pointer;
  z-index: 10000000;
}

.about-slider button.prev { left: 0; }
.about-slider button.next { right: 0; }

/* Responsive: untereinander bei kleinen Screens */
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
  }
  .about-slider {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }
}





















/* === 3) "Meine Arbeit" – Overview verlässlich verstecken === */
.is-hidden{ display: none !important; }

/* === 4) Cookie-Banner – sowohl ID als auch Klasse stylen === */
/* === COOKIE-BANNER === */
#cookie-banner {
  position: fixed;
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 2147483647;   /* garantiert ganz oben */
  pointer-events: auto !important;
}
#cookie-banner.hidden { display: none; }

#cookie-banner p {
  flex: 1 1 auto;
  margin: 0 10px 10px 0;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
}

#cookie-banner .cookie-buttons button {
  background: #4ade80;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  pointer-events: auto !important; /* Buttons immer klickbar */
}

#cookie-banner .cookie-buttons #reject-cookies {
  background: #f87171; /* Rot für Ablehnen */
}

/* Scrollen möglich */
/* --- Fenster-Inhalt: verlässlich scrollbar --- */
.fenster .content{
  /* Titlebar ~45px + Innenabstände Puffer -> passe 140px bei Bedarf an */
  max-height: calc(100vh - 140px);
  overflow: auto;
}

/* Wenn Detailansicht aktiv ist, sicher scrollen */
.work .work-detail{
  max-height: inherit;     /* übernimmt von .content */
  overflow: auto;
}

/* --- Einheitliches Bild-Grid, egal welche Auflösung --- */
.card-grid{
  /* passt sich dynamisch an, ohne zu schmal zu werden */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;     /* einheitliches Seitenverhältnis */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--inner-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* schneidet sauber zu, füllt den Rahmen */
  display: block;
}

/* Hover-Effekt dezent */
.card:hover img{
  transform: scale(1.02);
  transition: transform .2s ease;
}

/* Bild Grid Web */
.web-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.web-grid img {
  width: 100%;
  height: auto;    /* fixe Höhe */
  object-fit: cover;
  border-radius: 10px;
}

/* Bild-Grid Web */
.fenster .content .web-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* Karten & Bild */
.fenster .content .web-grid .web-card{
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--inner-border);
  border-radius: 12px;
  padding: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fenster .content .web-grid .web-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  background: rgba(255,255,255,0.1);
}

.fenster .content .web-grid .web-card img{
  width: 100%;
  height: 180px;          /* fixe Höhe für einheitliche Kacheln */
  object-fit: cover;      /* schneidet zentriert zu */
  border-radius: 8px;
}

.fenster .content .web-grid .web-card span{
  font-size: .95rem;
  font-weight: 600;
  color: #cbd5e1;
}



/* Kleine Screens: etwas großzügigeres Minimum */
@media (max-width: 600px){
  .card-grid{
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

/*CSS Batch für Bilder */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Sicherheitshinweis Links */
.external-note {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 16px;
  text-align: center;
  opacity: 0.8;
}

/* Interesse die ich zurzeit noch nicht kann */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.skill-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--inner-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.xp-bar {
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin: 10px 0;
  overflow: hidden;
}
.xp-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg,#60a5fa,#8b5cf6);
}

/* Spiele-Grid */
.games .games-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  justify-content: center;
  justify-items: center;
  align-items: start;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}

/* Bühne/Frame für eingebettete Spiele */
.game-frame{
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  margin: 8px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--inner-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: #0f172a;
}
.game-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.games-detail.is-hidden{ display:none; }

.fenster.is-maximized .game-frame {
  margin-top: 80px; /* Abstand von oben, einfach anpassen */
  margin-left: auto;
  margin-right: auto;
}

/* iFrame auf Handy/Tablet weiter unten anzeigen */
@media (max-width: 1024px) {
  .fenster.is-maximized .game-frame {
    margin-top: 140px; /* Abstand von oben, anpassen nach Bedarf */
    margin-left: auto;
    margin-right: auto;
  }
}



/* bestehende Note-Stil wiederverwenden/leicht anpassen */
.external-note { 
  font-size: .9rem; 
  color: #cbd5e1; 
  margin-bottom: 16px; 
  text-align: center; 
  opacity: .8; 
}
@media (max-width: 1024px) {
  .external-note {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

.legal-note {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 12px;
}


#social-bar a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
  #social-bar a img {
    width: 70px;
    height: 70px;
  }
}

#social-bar a img:hover {
  transform: scale(1.15);
}

.link-tile img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  pointer-events: none; /* nur das <a> klickbar, nicht das Bild direkt */
}



@media (max-width: 1024px) {
  .link-tile img {
    width: 170px;
    height: 170px;
    font-size: 60px;
  }
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 3 pro Reihe → 6 = 2 Reihen */
  gap: 20px;
  margin-top: 20px;
}

.link-tile {
  background: var(--bg2, #2b3340);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.link-tile:hover {
  background: var(--bg-hover, #334155);
  transform: translateY(-4px);
}



/* Games Overlay */
.game-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.game-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.overlay-content {
  text-align: center;
  color: white;
}

.start-btn {
  margin-top: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background: #60a5fa;
  color: white;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

/* Überschriften in Fenstern mittig */
.stack h2,
.stack .h2 {
  text-align: center;
}

.intrest-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:16px;
}
.intrest-detail.is-hidden{ display:none; }
.subheading{ margin: 8px 0 8px; color:#cbd5e1; font-weight:600; }

.intrest-overview.is-hidden { display: none; }
.intrest-detail.is-hidden   { display: none; }

/* Grid für Interessen-Übersichten */
.intrest-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px,1fr));
  gap: 28px;
  justify-items: center;
}

@media (max-width: 1024px) {
  .intrest-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 90px;            /* etwas enger */
    justify-items: center; /* mittig */
  }
}

/* 3D-Druck */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

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

.gallery-item .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 6px;
  pointer-events: none; /* Badge blockiert Klicks nicht */
}

@media (max-width: 1024px) {
 .gallery-item .badge {
  position: absolute;
  top: 10px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 4px 8px;
  font-size: 1.25rem;
  border-radius: 6px;
  pointer-events: none; /* Badge blockiert Klicks nicht */
}
}


/*Backen*/
.backenGallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* kompakter */
  gap: 16px;
}

.gallery-card {
  position: absolute;
  aspect-ratio: auto;        /* Quadrat */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 55px solid var(--inner-border);
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);  /* leichter Hover-Effekt */
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.gallery-card img {
  width: 200%;
  height: 180%;
  object-fit: cover;   /* füllt sauber den Block */
  display: block;
}

/* App-Kacheln innerhalb App‑Entwicklung */
.intrest-apps-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap:20px; justify-items:center; margin-top:12px;
}
.app-item{ display:flex; flex-direction:column; align-items:center; }
.app-tile{
  width:95px; height:95px; border-radius:18px; border:1px solid rgba(0,0,0,.85);
  background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 14px rgba(0,0,0,.28); cursor:pointer;
}
.app-tile img{ width:70%; height:70%; object-fit:contain; }
.app-detail{ margin-top:16px; }
.small-note{ font-size:.85rem; color:#cbd5e1; opacity:.9; }


@media (max-width: 1024px) { /* Tablet */
  .app-tile {
    width: 150px;
    height: 150px;
    border-radius: 18px;
  }

  .app-tile img {
    width: 75%;
    height: 75%;
  }
}

.favorites {
  margin: 2rem 0;
}

.favorites h4 {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: .3rem;
}

@media (max-width: 1024px) {
  .favorites h4 {
    font-size: 3rem;
  }
}

.favorites-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .6rem 1.2rem;
  padding: 0;
  margin: 0;
}

.favorites-grid li {
  background: rgba(255,255,255,0.05);
  padding: .5rem .8rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.favorites-grid li:hover {
  background: #0b1220;
}


/* Übersicht: Kachel mit Balken */
.interest-card {
  display: grid; gap: 10px;
  border: 1px solid var(--inner-border);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  text-align: center;
}
.interest-card .title { font-weight: 700; color:#e5e7eb; }

/* „Noch nicht freigeschaltet“ – optisch dunkler */
.interest-card[data-locked="true"] { opacity: .55; filter: grayscale(30%); }

/* Grid für die Übersicht */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
}
@media (max-width: 900px){ .interest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .interest-grid { grid-template-columns: 1fr; } }

/* Übersicht: Kachel mit Balken */
.interest-card {
  display: grid; gap: 10px;
  border: 1px solid var(--inner-border);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  text-align: center;
}
.interest-card .title { font-weight: 700; color:#e5e7eb; }

  .app-title {
    text-align: center;
  }

  /* Container der Skills */
.skill-overview {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

/* Einzelne Zeile */
.skill-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Name links */
.skill-row .name {
  font-weight: 700;
  color: #e5e7eb;
}

/* Balken-Hintergrund */
.skill-row .bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

/* Balkenfüllung */
.skill-row .bar > span {
  display: block;
  height: 100%;
  width: 0%; /* Startwert, JS ändert ihn */
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
  transition: width 900ms cubic-bezier(.2,.8,.2,1);
  will-change: width;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.25);
}

/* YouTube */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr); /* Standard: 2 Spalten */
}

@media (min-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* Ab 992px: 3 Spalten */
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Ratio */
  border: 2px solid #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-wrapper iframe,
.video-wrapper img.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-wrapper img.video-placeholder {
  filter: blur(8px);
}

.video-wrapper .accept-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5em 0.8em;
  font-size: 0.9em;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s, background-color 0.2s;
}

.video-wrapper .accept-video:hover {
  background-color: rgba(0,0,0,0.85);
  transform: translate(-50%, -50%) scale(1.05);
}

a.email-link {
  color: inherit;        /* übernimmt die normale Textfarbe */
  text-decoration: none; /* entfernt die Unterstreichung */
  cursor: text;          /* optional: Cursor bleibt wie bei normalem Text */
}

a.email-link:hover {
  text-decoration: underline; /* optional: bei Hover Unterstreichung */
  cursor: pointer;
}
