/* -------------------------------------
    1. Allgemeine Informationen
   -------------------------------------
    Author: Selma Fahmy
    Beginn: 20.05.2025
    Semester-Abgabe: 10.07.2025
    Letzte Bearbeitung: 10.07.2025
    Projekt: Semesteraufgabe BA2 - Eigene persönliche Webseite
*/

/* -------------------------------------
    2. Eigene Variablen 
   ------------------------------------- */
  body {
    cursor: url('../assets/images/cursor.png'), auto;
  }
  a, button {
    cursor: url('../assets/images/pointer.png'), pointer;
  }
  p, h1, h2, h3 {
    cursor: url('../assets/images/text.png'), text;
  }
/* -------------------------------------
    3. Global Style
   ------------------------------------- */
  body {
    font-family: asap;
    font-weight: 400;
    color: #333333;
    font-size: 20px;
    letter-spacing: 0.01em;
  }
  header {
    color: #f2f2f2;;
  }
  h1 {
    font-size: 4.9em;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
  }
  h1 span {
    font-family: Tomorrow;
    font-weight: 400;
    letter-spacing: 0;
    font-style: italic;
  }
  h2 {
    font-size: 2.5em;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  h3 {
    font-size: 1.5em;
    font-weight: 500;
    font-family: Tomorrow;
  }
  p em, ul em {
    font-style: italic;
    color: #8fb21d;
  }
  p strong {
    color: black;
    font-weight: 600;
  }
  ul {
    list-style-type: none;
    font-weight: 400;
  }
  time {
    font-family: Tomorrow;
    font-size: 0.9em;
    color: #a7a7a7;
  }
/* -------------------------------------
    4. Struktur/Layouting
   ------------------------------------- */
  body {
    align-content: center;
  }
  main {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
  .titel, nav , footer {
    margin-left: 1.75em;
    margin-right: 1.75em;
  }

/* ------ Navigation ----- */
  nav {
    margin-bottom: 1.75em;
    margin-top: 1.75em;
  }

/* ------ Titel-Bereich ----- */
  .titel {
    margin-top: 6.3em;
    margin-bottom: 14em;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  h1 {
    text-align: center;
  }
  .titel-oben {
    display: flex;
    align-items: center;
    gap: 0.035em;
  }
  .titel-oben img {
    max-height: 1em;
  }
  .titel-unten {
    position: relative;
    text-align: right; 
  }
  .header-hintergrund {
    width: 100%;
    height: 39em;
    object-fit: cover;
  }
  .header-container {
    top: 0;
    width: 100%;
    height: 39em;
    position: absolute;
    z-index: -1;
  }

/* ------ Inhalts-Bereich ----- */
  h2 {
    margin-top: 2em;
    text-align: center;
  }
  .h2-top {
    margin-top: 7.6em;
  }
  .h2-left {
    text-align: left;
  }
  .h2-bottom {
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  h3 {
    margin-top: 1.5em;
  }

/* ------ Bereich-Hintergrund ----- */
  .project-showcase {
    position: relative;
    min-height: 40vh; /
  }
  .fav-projects-top-hintergrund {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .fav-projects-top-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; 
    height: auto;
    margin-left: calc(-50vw + 50%); 
    z-index: -2;
  }
  .fav-projects-bottom-hintergrund {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .fav-projects-bottom-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw; 
    height: auto;
    margin-left: calc(-50vw + 50%); 
    z-index: -2;
  }

/* ------ Favourite Ptojects----- */
  #h2-fav-projects {
    padding-top: 5em;
  }
  .fav-project h3 {
    margin-top: 5em;
  }
  .fav-project-flex {
    display: flex;
    align-items: center;
    align-content: center;
    width: 987px;
  }
  .fav-project-png {
    position: relative;
    width: 172em;
    height: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  .fav-project-text {
    position: relative;
    border-left: solid;
    border-width: 0.25em;
    padding-left: 0.5em;
  }

  .rue-fav-project .fav-project-png, .rue-fav-project .fav-project-text {
    left: -7em;
    margin-top: 0.5em;;
  }
  .dx-fav-project .fav-project-png {
    left: -8em;
    margin-top: 0.5em;
  }
  .dx-fav-project .fav-project-text {
    left: -6em;
    margin-top: 0.5em;
  }
  .cgo-fav-project .fav-project-png, .cgo-fav-project .fav-project-text {
    left: -9em;
    margin-top: 1.5em;
  }
  .illu-fav-project .fav-project-png, .illu-fav-project .fav-project-text {
    left: -8em;
    margin-top: 0.5em;
  }
  .dx-fav-project, .rue-fav-project {
    flex-direction: row-reverse;
  }

/* ------ Footer Bereich----- */
  .footer-hintergrund {
    width: 100%;
    object-fit: cover;
    height: 10em;
  }
  .footer-container {
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
  }

/* -------------------------------------
    5. Komponenten
   ------------------------------------- */
/* ------ Navigation ----- */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .menu ul {
    display: flex;
    gap: 2.1em;
  }
  nav .menu li {
    display: inline-block; 
    padding: 0.1em 0.7em;
    border-radius: 15em; 
  }
  nav .menu .nav-checked {
    font-family: tomorrow;
    font-weight: 500;
    color: white;
  }
  header li:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s;
  }
  nav .burger-toggle, .nav-overlay, .burger-icon {
    display: none;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background-color: white;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  .burger-toggle:checked ~ .nav-overlay {
    transform: translateY(0);
  }
  .nav-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .overlay-checked {
    font-family: tomorrow;
    font-weight: 500;
    color: black;
  }
  .nav-overlay li {
    margin: 1em 0;
    font-size: 1.5em;
    color: #333333;
  }
  .overlay-png {
    height: 15em;
    width: auto;
    position: absolute;
    bottom: 1em;
    right: -1em;
  }

/* ------ Top-Button ----- */
  header .scroll-top-btn {
    z-index: 5;
    position: fixed;
    bottom: 1.75em;
    right: 1.75em;
    max-height: 1.75em;
    background-color: #8fb21d;

    padding: 0.2em;
    border-radius: 15em;
  }
  header .scroll-top-btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s;
  }

/* ------ Titel Bereich ----- */
  .titel-oben, .titel-unten {
    font-family: tomorrow;
  }

/* ------ Modul Auflistung ----- */
  .module {
    display: flex; 
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    column-gap: 2em;
    row-gap: 0.5em;
  }

/* ------ Tags Auflistung ----- */
  .tags {
    display: flex; 
    margin-top: 0.25em;
    color: black;
    text-align: center;
    align-items: center;
    gap: 0.5em;
  }
  .tags li {
    background-color: #eaeaea;
    opacity:0.8;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    border-radius: 15em;
  }

/* ------ Text-Bubble ----- */
  .bubble {
    width: fit-content;
    background-color: #ffffff;
    border-color: #d1d1d1;
    border-block-end-width: medium;
    border-style: solid;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    border-radius: 20em;
  }

/* ------ Button ----- */
  .button-wrapper {
    margin-top: 1.5em;
  }
  .button { 
    display: inline-block;
    background-color: #8fb21d;
    color: white;
    width: fit-content;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    border-radius: 15em;
  }
  .button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s;
  }

/* ------ Favourite Ptojects----- */
  .cgo-fav-project .h3-special, .cgo-fav-project time {
    color: #b3c63d;
  }
  .cgo-fav-project .fav-project-text {
    border-color: #b3c63d;
  }
  .dx-fav-project .h3-special, .dx-fav-project time {
    color: #fa8511;
  }
  .dx-fav-project .fav-project-text {
    border-color: #fa8511;
  }
  .illu-fav-project .h3-special, .illu-fav-project time {
    color: #f25f91;
  }
  .illu-fav-project .fav-project-text {
    border-color: #f25f91;
  }
  .rue-fav-project .h3-special, .rue-fav-project time {
    color: #e0137a;
  }
  .rue-fav-project .fav-project-text {
    border-color: #e0137a;
  }

/* ------ Gallerie ----- */
  .gallery {
    display: flex;
    justify-content: center;
    row-gap: 2em;
    margin-top: 2em;
    padding-bottom: 6.6em;
  }
  .image-option {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1 13 30%;
    transition: transform 0.3s ease;
    position: relative;
    top: -4em;
  }
  .image-option img {
    max-width: 320px;
    height: auto;
    transition: transform 0.3s ease;
  }
  .image-option .info-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    text-align: center;
  }
  .image-option input:checked + img {
    transform: scale(1.1);
  }
  .image-option input:checked + img + .info-text {
    max-height: 600px;
  }
  .gallery h3 {
    margin-top: 0;
    position: relative;
    top: 2em;
    left: 1em;
  }
  .info-text p {
    padding-bottom: 1em;
  }

/* ------ Archiv ----- */
  .archiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 2em;
    position: relative;
    right: 7em;
    width: 949px;
  }
  .archiv article {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .archiv img {
    width: auto;
    height: 15em;
    border-radius: 1em;
  }
  .archiv .tag-top {
    position: relative;
    top: 1em;
  }
  .archiv .tag-bottom {
    position: relative;
    bottom: -16em;
    right: -2.1em;
  }

/* ------ Thank You ----- */
  .end {
    text-align: center;
  }
  .thanks {
    margin-bottom: 2.5em;
  }
  .socials {
    line-height: 2em;
    margin-bottom: 2.5em;
  }

/* ------ Footer ----- */
  .footer-text {
    position: relative;
    bottom: -6.4em;
    z-index: 1;
    color: white;
    font-family: tomorrow;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 4em;
  }

/* -------------------------------------
    6. Seiten-spezifische Anpassungen 
   ------------------------------------- */
/* ------ Titel Bereich ----- */
  #titel-home {
    max-width: 31.1em;
   }
  #titel-portfolio {
    max-width: 35.55em;
   }
  #titel-blog {
   max-width: 29.4em;
   }
  #titel-contact {
    max-width: 49.75em;
   }

/* ------ Home - Welcome ----- */
  .welcome {
    width: 100%;
    height: 212px;
    margin-bottom: 8em;
  }
  .welcome h2 {
    position: relative;
    left: 1.5em;
  }
  .welcome .chibi {
    position: relative;
    top: -15.5em;
    left: -13.9em;
    margin-left: auto;
    margin-right: auto;
    width: 62em;
    height: auto;
  }
/* ------ Home - Profil ----- */
  .profil {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .profil-bild img {
    position: relative;
    top: -9em;
    max-width: 350px;
    height: auto;
  }
  .profil-bild {
    height: 200px;
  }
  .profil-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .profil-aka {
    margin-bottom: 1.5em;
  }
  .profil-info {
    display: flex;
    flex-flow: wrap;
    margin-top: 2em;
  }
  .profil-info #experiences {
    order: 1;
    flex-grow: 3;
  }
  .profil-info #education {
    order: 2;
    flex-grow: 2;
  }
  .profil-info #languages {
    order: 3;
    flex-grow: 1;
  }
  .profil-info #skills {
    order: 4;
    flex-grow: 1;
  }
/* ------ Home - Skills ----- */
  .skill-set {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .skills-icon {
    width: auto;
    height: 3em;
  }
  meter {
    width: 100%;
  }
  meter::-webkit-meter-optimum-value {
    background: #333333; 
  }
  .skill-assets {
    display: flex;
    align-items: center;
  }
  .skill-assets img {
    width: 23px;
    height: auto;
  }
/* ------ Home - Überleitung zu End ----- */
  .home-end-ueberleitung {
    margin-top: 24.5em;
    margin-bottom: 4em;
    width: 100%;
    height: 212px;
  }
  .home-end-text {
    position: relative;
    top: -12em;
    left: -6.2em;
  }
  .home-end-ueberleitung .chibi {
    position: relative;
    top: -28em;
    right: -8em;
    z-index: -1;
  }

/* ------ Portfolio - About ----- */
  .about-info-text {
    position: relative;
    top: 2.5em;
    left: 9.5em;
    z-index: 1;
  }
  .about-info .chibi {
    position: relative;
    top: -3.8em;
    left: -17em;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: 20em;
    z-index: -1;
  }
/* ------ Portfolio - Current Projects ----- */
  .h2-portfolio-current {
    padding-top: 5em;
    margin-top: 1em;
    margin-bottom: 1.5em;
  }
/* ------ Portfolio - Thanks ----- */
  #portfolio-bubble-top {
    margin-top: 3em;
    position: relative;
    right: 0;
    top: 0.8em;
  }
  #portfolio-bubble-mid {
    position: relative;
    right: -5em;
  }
  #portfolio-png-mid {
    position: relative;
    top: -3em;
  }
  #portfolio-bubble-end {
    position: relative;
    top: -2em;
  }
  #portfolio-png-end {
    position: relative;
    top: -3em;
  }
  .portfolio-thanks {
    margin-bottom: 0;
    max-height: 1170px;
  }

/* ------ Blog - Einleitung ----- */
  .blog-intro .bubble {
    position: relative;
    top: 10em;
  }
  .blog-intro .chibi {
    position: relative;
    left: 10em;
    top: -3em;
  }
/* ------ Blog - Inhalt ----- */
  .blog-h3 {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
  }
  #article2, #article3 {
    margin-top: 3em;
  }
  .blog-article p {
    margin-bottom: 0.8em;
  }
/* ------ Blog - Q&A ----- */
  .blog-qua {
    width: auto;
    height: 334px;
  }
  .blog-qua .bubble {
    margin-top: 4em;
    position: relative;
  }
  .blog-qua .chibi {
    position: relative;
    top: -10em;
    left: 4em;
  }
  .qua-que .bubble {
    margin-top: 1em;
  }
  .qua-que {
    margin-bottom: 5em;
  }

/* ------ Contact - Intro ----- */
  .contact-intro {
    height: 465px;
  }
  .contact-intro h2 {
    position: relative;
    right: -2em;
  }
  .contact-intro .chibi {
    position: relative;
    right: 13em;
    top: -14em;
  }
  .contact-intro p {
     position: relative;
      top: -14em;
  }
/* ------ Contact - Commission ----- */
  .contact-com {
    background-color: #8fb21d;
    color: white;
    width: fit-content;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border-radius: 13em;
    margin-top: 4em;
    height: 833px;
    margin-bottom: 10em;
  }
  .contact-com h2 {
    margin-top: 2em;
  }
  .contact-com p {
    padding: 1em;
    font-weight: 250;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-com strong {
    color: white;
    font-weight: 650;
  }
  .contact-com .chibi {
    position: relative;
    top: -4em;
    left: 12em;
  }
/* ------ Contact - YT-Embed ----- */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 5em;
    margin-bottom: 5em;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

/* ------ Impressum und Datenschutz ----- */
  .impressum h2, .datenschutz h2 {
    text-align: left;
    margin-top: 1em;
  }
  .impressum h4, .datenschutz h4 {
    margin-top: 1em;
    margin-bottom: 1em;
  }

/* -------------------------------------
    7. Responsive Design
   ------------------------------------- */
/* ------ Mobil-Abstände Anpassungen ----- */
  @media screen and (max-width:500px){
    /* ------ Mobile Abstände Anpassung ----- */
    .h2-top {
      margin-top: 6em;
    }
    .welcome {
      height: 188px;
    }
    #h2-fav-projects {
      padding-top: 3em !important; 
    }
    .home-end-ueberleitung {
      margin-top: 18em !important;
      height: 9em !important;
    }
    .blog-intro .chibi {
      margin-bottom: 2em;
    }
    .blog-article {
      margin-bottom: 4em;
    }
    .blog-qua .bubble {
      margin-top: 2em !important;
    }
    .blog-qua {
      height: 400px !important;
    }
    .qua-que h3 {
      margin-top: 2em;
    }
    .contact-intro {
      height: 700px !important;
    }
    .contact-intro .h2-top {
      margin-top: 6em;
    }
    .contact-intro .chibi {
      margin-top: 2em;
      margin-bottom: 1em; 
    }
    .contact-com {
      height: 6000px !important;
      margin-bottom: 8em !important;
    }
    #h1-contact {
      font-size: 3.5em;
    }
  }
/* ------ Allgemein ----- */
  @media screen and (max-width:450px){
    body {
      font-size: 15px;
    }
    .footer-text {
      bottom: -5.5em;
      font-size: 13px;
    }
    .bubble {
      width: auto;
      padding-top: 0.7em;
      padding-bottom: 0.7em;
      border-radius: 3em;
    }
    h1 {
      word-break: break-word;
    }
  }
/* ------ Navigation ----- */
  @media screen and (max-width:39.5em){
    nav .menu li {
      display: none;
    }
    nav .menu .nav-checked, .burger-icon {
      display: unset !important;
    }
    nav {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
    }
    nav .nav-checked {
      order: 1;
    }
    nav .burger-icon {
      order: 2;
    }
    nav .burger-icon img {
      height: 3em;
    }
  }
/* ------ Footer ----- */
  @media screen and (max-width:590px){
    .footer-text {
      font-size: 16px;
      gap: 1.5em;
    }
  }

/* ------ Titel Bereich: Home ----- */
  @media screen and (max-width:39.5em) {
    #titel-home {
      max-width: 31em;
     }
    #titel-home {
      margin-top: 4.5em;
      margin-bottom: 14em;
    }
    #h1-home {
      line-height: normal;
    }
    #titel-home .titel-oben {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.035em;
    }
    #titel-home .titel-unten {
      text-align: center; 
    }
  }
/* ------ Titel Bereich: Portfolio ----- */
  @media screen and (max-width:710px) {
    #titel-portfolio {
      margin-top: 4.5em;
      margin-bottom: 14em;
    }
    #h1-portfolio {
      line-height: normal;
    }
    #titel-portfolio .titel-oben {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.035em;
    }
    #titel-portfolio .titel-unten {
      text-align: center; 
    }
  }
/* ------ Titel Bereich: Blog ----- */
  @media screen and (max-width:587px) {
    #titel-blog {
      margin-top: 4.5em;
      margin-bottom: 14em;
    }
    #h1-blog {
      line-height: normal;
    }
    #titel-blog .titel-oben {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.035em;
    }
    #titel-blog .titel-unten {
      text-align: center; 
    }
  }
/* ------ Titel Bereich: Contact ----- */
  @media screen and (max-width:994px) {
      #titel-contact {
        margin-top: 4.5em;
        margin-bottom: 14em;
      }
      #h1-contact {
        line-height: normal;
        word-break: break-word;
      }
      #titel-contact .titel-oben {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.035em;
      }
      #titel-contact .titel-unten {
        text-align: center; 
      }
  }
/* ------ Home: Welcome ----- */
  @media screen and (max-width: 930px) {
    .welcome {
      display: block;
      margin-bottom: 25em;
    }
    .welcome h2 {
      position: static;
    }
    .welcome .chibi {
      top: -2em;
      left: 0;
    }
  }
/* ------ Home: Profiil ----- */
  @media screen and (max-width: 930px) {
    .profil {
      flex-direction: column;
      align-items: center;
    }
    .profil-bild img {
      position: relative;
      top: 0;
      max-width: 350px;
      height: auto;
    }
    .profil-bild {
      height: fit-content;
    }
  }
/* ------ Home: Favourite Projects ----- */
  @media screen and (max-width: 1000px) {
    #h2-fav-projects {
    padding-top: 5em;
    }
    .fav-project h3 {
      margin-top: 5em;
    }
    .fav-project-flex {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      align-content: center;
      width: auto;
    }
    .fav-project-png {
      position: relative;
      width: 172em;
      height: auto;
      padding: 0;
    }
    .fav-project-text {
      position: static;
    }
    .rue-fav-project .fav-project-png, .rue-fav-project .fav-project-text {
      left: 0;
      margin-top: 0.5em;;
    }
    .dx-fav-project .fav-project-png {
      left: -1em;
      margin-top: 0.5em;
    }
    .dx-fav-project .fav-project-text {
      left: 0;
      margin-top: 0.5em;
    }
    .cgo-fav-project .fav-project-png, .cgo-fav-project .fav-project-text {
      left: -1.5em;
      margin-top: 1.5em;
    }
    .illu-fav-project .fav-project-png, .illu-fav-project .fav-project-text {
      left: 0;
      margin-top: 0.5em;
    }
    .dx-fav-project, .rue-fav-project {
      flex-direction: row-reverse;
    }
  }
/* ------ Home: Übergang----- */
  @media screen and (max-width: 1000px) {
    .home-end-ueberleitung {
      display: block;
      margin-top: 21em;
      margin-bottom: 4em;
    }
    .home-end-text {
      position: relative;
      left: 0;
      top: -13em;
    }
    .home-end-ueberleitung .chibi {
      position: relative;
      top: -16em;
      left: -3em;
    }
  }

/* ------ Portfolio: About ----- */
  @media screen and (max-width: 840px) {
    .about-info {
      flex-direction: column;
      justify-content: center;
      align-content: center;
      align-items: center;
    }
    .about-info-text {
      top: 2.5em;
      left: 0;
      width: auto;
      text-align: center;
    }
    .about-info .chibi {
      top: 1.6em;
      left: 0;
      width: auto;
      height: auto;
    }
  }
/* ------ Portfolio: Current ----- */
  @media screen and (max-width: 1100px) {
    .gallery {
      flex-wrap: wrap;
    }
    .image-option img {
      margin-left: auto;
      margin-right: auto;
    }
    .image-option .info-text {
      margin-left: auto;
      margin-right: auto;
    }
    .gallery h3 {
      top: 2em;
      left: 1em;
    }
    .gallery #h3-current-rue {
      left: 7em;
    }
    .info-text p {
      padding-bottom: 1em;
      max-width: 320px;
    }
  }
  @media screen and (max-width: 1100px) {
    .h2-portfolio-current {
      margin-top: 3.5em;
      padding-top: 3em;
    }
    .gallery h3 {
      top: 2em;
      left: 2.3em;
    }
    .gallery #h3-current-rue {
      left: 2.3em;
    }
    .info-text p {
      padding-bottom: 1em;
      max-width: 320px;
    }
  }
/* ------ Portfolio: Archiv ----- */
  @media screen and (max-width: 1000px) {
    .archiv {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      right: 0;
      width: 100%;
      height: auto;
    }
  }
/* ------ Portfolio: Thanks ----- */
  @media screen and (max-width: 600px) {
    .portfolio-thanks {
      display: flex;
      flex-direction: column;
    }
    #portfolio-bubble-top {
      margin-top: 3em;
      position: relative;
      right: 0;
      top: -0.1em;
    }
    #portfolio-bubble-mid {
      position: relative;
      right: 0;
    }
    #portfolio-png-mid {
      position: relative;
      top: -1em;
    }
  }

/* ------ Blog: Einleitung ----- */
  @media screen and (max-width: 1100px) {
    .blog-intro .bubble {
      position: relative;
      top: 4em;
      left: 4em;
    }
    .blog-intro .chibi {
      position: relative;
      left: 2em;
      top: 1em;
  }
  }
  @media screen and (max-width: 550px) {
    .blog-intro .bubble {
      position: relative;
      top: 3em;
      left: 1em;
    }
    .blog-intro .chibi {
      margin-top: 2em;
      position: relative;
      top: -1em;
  }
  }
/* ------ Blog: Q&A ----- */
  @media screen and (max-width: 650px) {
    .blog-qua {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 607px;
    }
    .blog-qua .bubble {
      margin-top: 3em;
      position: static;
    }
    .blog-qua .chibi {
      position: relative;
      top: -2em;
      left: -1em;
      margin-bottom: 1em;
    }
  }

/* ------ Contact: Intro ----- */
  @media screen and (max-width: 900px) {
    .contact-intro {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 941px;
    }
    .contact-intro h2 {
      position: relative;
      right: 0;
      top: -5em;
    }
    .contact-intro .chibi {
      position: relative;
      right: 0;
      top: -14em;
    }
    .contact-intro p {
       position: relative;
        top: -14em;
    }
  }
/* ------ Contact: Intro ----- */
  @media screen and (max-width: 1100px) {
    .contact-com {
      background-color: #8fb21d;
      color: white;
      width: fit-content;
      text-align: center;
      padding-left: 1em;
      padding-right: 1em;
      padding-top: 0.2em;
      padding-bottom: 0.2em;
      border-radius: 13em;
      margin-top: 4em;
      min-height: 833px;
      max-height: 1000px;
      margin-bottom: 10em;
    }
    .contact-com h2 {
      margin-top: 2em;
    }
    .contact-com p {
      padding: 1em;
      font-weight: 250;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-com strong {
      color: white;
      font-weight: 650;
    }
    .contact-com .chibi {
      position: relative;
      top: -2em;
      left: 1em;;
    }
  }