/* ============ About Page Styles ============ */

@import url("https://use.typekit.net/slm6dwh.css");

@font-face {
  font-family: Kormelink;
  font-style: normal;
  src: url('fonts/WT_Kormelink_Roman_DESK_1.1.woff2');
}

@font-face {
  font-family: Kormelink;
  font-style: italic;
  src: url('fonts/WT_Kormelink_Italic.woff2');
}

body, html {
    overflow: auto;
    height: 100vh;
    margin: 0;
    padding: 0;

  }

  details {
    overflow: visible !important;
    max-height: none !important;
  }

.about-page {
  display: flex;
  height: 100vh;
  

}

.about-text {
    line-height: 1.1;
}

/* Linke Seite: Start ab Mitte, dann scrollbar */
.left-side {
  width: 50vw;
  min-height: 100vh;     /* damit es mindestens volle Höhe hat, aber wachsen kann */
  box-sizing: border-box;
  display: block;
 
}

/* Scrollbarer Bereich mit max Höhe 50vh (ab Mitte bis unten) */
.scroll-container {
    padding-top: 48vh;       /* statt top + height */
  overflow: visible;
  position: relative;
  font-family: 'Kormelink';
  font-style: italic;
  font-size: 12pt;
  color: black;
  box-sizing: border-box;
  word-break: break-word;
  hyphens: auto;
  }
  
  
 


.sub {
    margin-top: -17px;
}



.menu-about a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 0; /* statt 0.2rem 0 */
    white-space: nowrap;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-style: normal;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    font-size: 10pt;
    text-transform: uppercase;
  }


  .menu-about summary {
    text-decoration: none;
    color: black;
    font-weight: 500;
    white-space: nowrap;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-style: normal;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    font-size: 10pt;
    text-transform: uppercase;
  }


  .summary-wrapper {
    margin-bottom: -20.5px;
    line-height: 0.7;
    padding: 0;
  }


  summary {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 10pt;
    cursor: pointer;
   
  }



  details {
    display: block;
    overflow: visible;
    position: static;
  }
  
details[open] > *:not(summary) {
  margin-top: 1em;
}


  .first {
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .second {
    margin-top: 1;
    line-height: 1.1;
    font-style: normal;
  }

  #insta {
    font-family: 'Kormelink';
    font-size: 12pt;
    text-transform: none;
  }

  #mail {
    font-family: 'Kormelink';
    font-size: 12pt;
    text-transform: none;
  }
  
  .menu-about a:hover {
    font-style: italic;
    font-weight: 500;
  }

  .menu-about summary:hover {
    font-style: italic;
    font-weight: 500;
  }

  .normal {
    font-style: normal;
  }

  .normalcap {
    font-style: normal;
    text-transform: uppercase;
  }

/* Rechte Seite */
.right-side {
  position: relative;
}

.about-bg-img {
  position: fixed;
  top: 0;
  left: 50vw;

  width: 50vw;
  height: 100vh;

  object-fit: cover;

  z-index: 1;
}

.right-side::after {
  content: "";

  position: fixed;

  top: 0;
  left: 50vw; 

  width: 50vw;
  height: 100vh;
background: rgba(255,255,255,0.2);

  backdrop-filter: brightness(1.15) contrast(0.8);
  -webkit-backdrop-filter: brightness(1.15) contrast(0.8);

  pointer-events: none;

  z-index: 2;
}

.right-side .menu {
  position: fixed;
  top: 48vh;
  left: 50%;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: black;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 10pt;

  z-index: 3;
}

.right-side .menu::before {
  content: "";

  position: absolute;

  top: -120px;
  bottom: -120px;
  left: -90px;
  right: -90px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255,255,255,0.60) 0%,
      rgba(255,255,255,0.30) 38%,
      rgba(255,255,255,0.12) 72%,
      rgba(255,255,255,0) 100%
    );

  filter: blur(20px);

  pointer-events: none;
  z-index: -1;
	
}

#other .subsub {
	  filter: brightness(0.4)  contrast(1.2);
}



/* Desktop */
@media (min-width: 801px) {
	
	
  .mobile-about {
    display: none;
  }

  details,
.summary-wrapper,
.menu-about {
  height: auto !important;
  overflow: visible !important;
}

  .menu-about {
    top: 48%;
    left: 5px;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 15px;
    padding: 0 2vw;
    overflow: visible;
  flex-wrap: wrap;
  }

  .menu > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }
}





@media (max-width: 800px) {
    html, body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        height: auto;
      }
  
    .about-page {
      display: none;
    }
  
    .about-bg-img {
        display: none;
    }

    .photo-credit {
        display: none;
    }

    /* Linke Seite wird sichtbar für Mobile */
    .left-side {
      display: none;
    }
  
    /* Rechte Seite und Menü bleiben ausgeblendet */
    .right-side,
    .menu {
      display: none;
    }
  
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 15dvh;
        z-index: 10;
        overflow: hidden;
      }


    .mobile-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
      }

      .mobile-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 50dvh;
        z-index: 1;
        overflow: hidden;

      }

      .mobile-link {
        opacity: 0.5;
      }
    
      /* Overlay Verlauf oben */
      .mobile-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 15dvh; /* Höhe des Verlaufs, kannst du anpassen */
        pointer-events: none; /* klickbar bleibt das Bild darunter */
        background: linear-gradient(to bottom, lightgrey  0%, transparent 100%);
        mix-blend-mode: difference;
        z-index: 2;
      }

          .mobile-menu-button {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 14px;
            border-radius: 6px;
            color: black;
            font-weight: 500;
            font-family: "helvetica-neue-lt-pro", sans-serif;
            font-size: 10pt;
            text-transform: uppercase;
             z-index: 2;
          }
              
          

    a {
        text-decoration: none;
        color: black;

    }
  
    .mobile-scroll-content {
        
      position: relative;
      margin-top: 50dvh;
      z-index: 2;
      background: linear-gradient(to top, white 80%, rgba(255, 255, 255, 0) 100%);
      padding: 15px 20px 20px 20px; /* symmetrisches Padding wie links */
     
    }
  
    /* Mobile About Text Styles */
    .mobile-about-text {
      font-family: 'Kormelink';
      font-style: italic;
      font-size: 12pt;      /* gleiche Schriftgröße wie Desktop */
      line-height: 1.1;     /* wie Desktop */
    margin-top: 0;
      margin-left: 0;
      margin-right: 0;
      hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
     
    }
  
    /* Details und Summary Styles */
    details {
      margin-bottom: 8px;   /* ähnlich wie .first margin-bottom */
      border-bottom: none;  /* kein Border für cleaner Look */
      padding-bottom: 0;
    }
  
    summary {
      font-family: "helvetica-neue-lt-pro", sans-serif;
      font-weight: 500;    /* wie Desktop */
      font-size: 10pt;     /* etwas kleiner als Text */
      text-transform: uppercase;
      cursor: pointer;
      outline: none;
      list-style: none;
      margin: 0 0 4px 0;   /* kleiner Abstand unten */
      padding: 0;
      line-height: 1.1;
    }
  
    summary::-webkit-details-marker {
      display: none; /* Pfeil ausblenden für Safari/Chrome */
    }
  
    summary::before {
      content: '▸';
      display: inline-block;
      margin-right: 8px;
      transition: transform 0.3s ease;
    }
  
    details[open] summary::before {
      transform: rotate(90deg);
    }
  
    /* Text-Inhalt unter summary */
    details > *:not(summary) {
      font-family: 'Kormelink', serif;
      font-style: italic;
      font-size: 12pt;      /* gleiche Größe wie .mobile-about-text */
      line-height: 1.1;
      color: black;
      margin-left: 18px;    /* etwas Einrückung wie Desktop */
      margin-bottom: 8px;   /* Abstand nach Absätzen */
    }
  
    .mobile-about-text a {
        text-decoration: none;
        color: black;
        font-weight: 500;
        padding: 0; /* statt 0.2rem 0 */
        white-space: nowrap;
        font-family: "helvetica-neue-lt-pro", sans-serif;
        font-style: normal;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        font-size: 10pt;
        text-transform: uppercase;
      }
    
    
      .mobile-about-text summary {
        text-decoration: none;
        color: black;
        font-weight: 500;
        white-space: nowrap;
        font-family: "helvetica-neue-lt-pro", sans-serif;
        font-style: normal;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        font-size: 10pt;
        text-transform: uppercase;
      }
    
    
      .summary-wrapper {
        margin-bottom: -15.5px;
        line-height: 0.7;
        padding: 0;
      }
    
      summary {
        margin: 0;
        padding: 0;
        line-height: 0.7;
        font-size: 10pt;
        cursor: pointer;
      }

  
    .logo {
      mix-blend-mode: soft-light;
    }
  
    .mobile-photo-credit {
      position: absolute;
      bottom: 15px;
      right: 15px;
      font-size: 8pt;
      color: white;
      font-family: Kormelink;
      font-style: italic;
      z-index: 3;
    }
  }
  
  