body{
    margin: 0;
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
  }
  .b-red{
    background-color: #550A21;
  }
  .b-lightred{
    background-color: #6f0626;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 
    0 6px 20px rgba(0, 0, 0, 0.3);
  }
  .b-white{
    background-color: white;
  }
  .f-red{
    color: #550A21;
  }
  .f-white{
    color: white;
  }
  .f-hover-beige:hover{
    color: #D3BFA7;
  }
  .fw-600{
    font-weight: 600;
  }
  .fw-700{
    font-weight: 700;
  }
  .spacer{
    aspect-ratio: 900/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .waveBlueToBordeaux{
    background-image: url("media/svg/waves/wave_blue_to_bordeaux.svg");
  }
  .waveBordeauxToBlue{
    background-image: url("media/svg/waves/wave_bordeaux_to_blue.svg");
  }
  .waveBordeauxToWhite{
    background-image: url("media/svg/waves/wave_bordeaux_to_white.svg");
  }
  .waveWhiteToBordeaux{
    background-image: url("media/svg/waves/wave_white_to_bordeaux.svg");
  }
  .text{
    color: white;
  }
  .name{
    font-weight: 800;
    font-style: inherit;
    font-size: 25px;
    letter-spacing: 1.2px;
  }
  .eyeCatcher{
    font-size: 60px;
  }
  #jobDescription{
    color: #D3BFA7;
  }
  .headline{
    font-size: 25px;
  }
  .miniHeadline{
    font-size: 19px;
  }
  a{
    text-decoration: none;
    font-size: 17px;
  }
  .navbar-toggler {
    border: none !important; /* Entfernt den Rand */
    background: none !important; /* Entfernt den Hintergrund */
    outline: none !important; /* Entfernt den Fokusrahmen */
  }

  .navbar-toggler-icon {
      filter: invert(1); /* Macht das Icon weiß */
  }

  .timeline-container {
            display: flex;
            align-items: flex-start;
        }
        .timeline {
            position: relative;
            width: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .timeline::before {
            content: "";
            position: absolute;
            width: 4px;
            height: 100%;
            background: #333;
            left: 50%;
            transform: translateX(-50%);
        }
        .point {
            width: 12px;
            height: 12px;
            background: #ff4500;
            border-radius: 50%;
            position: relative;
            margin: 20px 0;
        }
        .content {
            padding-left: 20px;
            max-width: 400px;
        }
        .svg-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.svg-hover {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.svg-container:hover .svg-default {
    display: none;
}

.svg-container:hover .svg-hover {
    display: block;
}
.custom-list .list-group-item {
    background-color: white; /* Standard weißer Hintergrund */
    border: 1px solid #550A21; /* Bordeauxfarbener Rand */
    color: #550A21; /* Textfarbe passend zum Rand */
}

.custom-list .list-group-item:hover{
    background-color: #6A0D25; /* Etwas helleres Bordeaux beim Hover */
    color: white !important; /* Text wird beim Hover weiß für bessere Lesbarkeit */
    transition: background-color 0.3s ease-in-out;
}

.custom-list .list-group-item.active {
    background-color: #550A21 !important; /* Aktiver Eintrag bleibt in Bordeaux */
    color: white !important;
}
.footerLink:hover{
  color:#550A21;
  text-decoration: underline;
  font-weight: 600;
}
.start{
  border: 1px solid white;
  background-color: rgba(111, 6, 38,0.7);
  padding: 10px;
}
#linkContainer{
  display: flex;
  justify-content: space-evenly;
}
.responsive-width {
  width: 75%; /* Standard für kleinere Bildschirme */
}

@media (min-width: 992px) { /* Bootstrap "md" Breakpoint */
  .responsive-width {
      width: 50%;
  }
}

