/* largeabout.css */


body {
  background-color: #fff;
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
}

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

html, body {
    color: #000;
    font-size: 100%;
    height: 100%;
}

body {
    background-color: #fcfbf7;
    height: 100vh;
    overflow-y: hidden; /* Deaktiviere Scrolling */
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

.content {
  width: 100%;
  position: fixed;
  top: 40px;
  left: 40px;
  padding-right: 40px;
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

h1 {
    font-family: "acumin-pro", sans-serif;
    font-weight: 500;
    font-size: 2.625rem;
    line-height: 95%;
    opacity: 1; /* Standardmäßig auf sichtbar setzen */
    margin-bottom: 40px; /* Größerer Abstand zwischen den Überschriften */
    padding-left: 0; /* Entfernt alle Einzüge */
    text-indent: 0; /* Entfernt Text-Einzüge */
}

h1.visible {
    opacity: 1;
}

h1.indented,
h1.full-indent,
h1.single-indent {
    padding-left: 0; /* Entfernt Einzüge */
    text-indent: 0; /* Entfernt Text-Einzüge */
}

h1.full-indent::before {
    content: none; /* Entfernt den Pseudo-Element-Inhalt */
}

h1.right-aligned {
    text-align: right;
    margin-right: 40px;
}

h2 {
    font-family: "acumin-pro", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 105%;
}

h3 {
    font-size: 2.375rem; /* Größere Schriftgröße für große Bildschirme */
}

/* Transition for non-visible headers - Deaktiviert auf großen Bildschirmen */
h1:not(.visible) {
    opacity: 1;
}

/* =========================== nav =========================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  /* Hoher z-index-Wert, um sicherzustellen, dass die Navigation über allem steht */
    mix-blend-mode: difference;  /* Invertiert die Farben basierend auf dem Hintergrund */
    color: white;  /* Standardfarbe für die Navigation */
}

nav ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Ändere von 4 auf 3 Spalten */
  padding: 10px 25px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  font-size: 1.1875rem;
  color: inherit;
  gap: 0;
}

nav li:nth-child(1) { grid-column: 1; }
nav li:nth-child(2) { grid-column: 2; }
nav li:nth-child(3) { grid-column: 3; justify-self: end; } /* Download CV jetzt rechts */

nav a {
    text-decoration: none;
    color: inherit;  /* Farbe erben */
}
  
.current {
    color: inherit;  /* Farbe erben */
}
  
nav li:last-child {
    margin-right: 100px;
    padding-right: 0;
}

#hi {
    padding-top: 20px;
    text-decoration: none;
    color: #000;
}

a {
    text-decoration: none;
}

/* =========================== bottom nav =========================== */

/* CV Download nur auf Mobile - auf Desktop verstecken */
.cv-download {
  display: none !important;
}

  
.navbar p, .navbar li {
    margin: 0;
}
  
.email-link {
    text-decoration: none;
    color: #000000;
}

.impressum {
    text-decoration: none;
    color: #000000; 
}
  
.email-link:hover {
    color: #000000;
}

.about-intro {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 105%;
  grid-column: 2 / span 2;
  margin: 0;
  padding: 0;
  padding-top: 60px;
  box-sizing: border-box;
}

/* Globale Navigation und Bottom-Navigation Schriftgewicht */

.navbar p, .navbar li {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
}

.email-link, .impressum, .instagram-link {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}

.email-link:hover, .impressum:hover, .instagram-link:hover {
  color: #000000;
}

.navbar {
    overflow: hidden;
    position: fixed;
    bottom: 2px;
    width: 100%;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 25px;
    font-family: "acumin-pro", sans-serif;
    font-weight: 500;
    font-size: 1.1875rem;
    box-sizing: border-box;
    text-decoration: none;
    color: #000000;
    gap: 0;
}

.navbar li:nth-child(1) { grid-column: 1; }
.navbar li:nth-child(2) { grid-column: 2; }
.navbar li:nth-child(3) { grid-column: 3; }
.navbar p { grid-column: 4; justify-self: end; }
