body {
    color: #888;
    font-family: 'Poppins', sans-serif;
}

.navbar-nav .nav-link {
    color: #888 !important;
}

.navbar-nav .nav-link.active {
  color: #ff510f !important;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ff510f !important;
    font-size: 1rem;
}

.navbar-toggler i {
    font-size: 40px;  /* Beispiel für die Größe */
    color: #ff510f;   /* Beispiel für die Farbe */
    outline: none;
}

/* Standardzustand - Zentrierung der Navigationselemente */
.navbar-nav {
  display: flex;            /* Flexbox aktivieren, um die Links nebeneinander anzuordnen */
  justify-content: center;  /* Zentrierung der Links */
  align-items: center;      /* Vertikale Zentrierung */
  width: 100%;              /* Sicherstellen, dass die Navbar die gesamte Breite einnimmt */
  }

.center-aligned {
  text-align: center;
}

#section-margin {
  margin-bottom: 100px; /* Hier den gewünschten Abstand eintragen */
}

#kontakt {
  margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
}

.btn-outline-danger {
  color: #ff510f;
  font-family:'Poppins', sans-serif;
  border-color: #ff510f;
}

.btn-outline-danger:hover {
  background-color: #ff510f; /* Hintergrundfarbe beim Hover */
  color: #fff; /* Textfarbe beim Hover */
}

/* große Displays (Desktop) */
p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: none;
  color: #888;
  text-align: left;
  line-height: 1.5;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: #ff510f;
    line-height: 1.3;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #ff510f;
  line-height: 1.3;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  color: #ff510f;
  line-height: 1.3;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0px;
  color: #888;
  line-height: 1.5;
}

ul.custom-list {
  font-size: 1rem; /* Standardgröße für Desktops */
}

#ueber-mich-hero {
  background-image: url('images/sven.jpg'); /* Hier dein Bild */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax-Effekt optional */
  height: 100vh; /* Volle Viewport-Höhe */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: white; /* Falls Text ins Bild soll */
  position: relative;
}

.hero-content {
position: absolute;
left: 60%; /* Oder andere Werte für exakte Platzierung */
top: 40%;
transform: translate(-50%, -50%);
max-width: 450px; /* Begrenzt die Breite des Textblocks */
text-align: left; /* Falls gewünscht */
}

/* Tablets (maximale Breite von 1024px) */
@media screen and (max-width: 1024px) {
  p {
    font-size: 1rem;
    letter-spacing: 0px;
  }  
    
  h1 {
    font-size: 4rem;
  }
    
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
  
  ul.custom-list {
    font-size: 0.8rem; /* Kleinere Schriftgröße für Tablets */
  }
  
  .navbar-nav .nav-link {
    font-size: 1rem; /* Kleinere Schriftgröße für Tablets */
  }
  
  /* Zentrierung der Navigationselemente auf Tablets */
  .navbar-nav {
    justify-content: center;  /* Zentrierung für Tablets */
  }
  
  #section {
    margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
  }
  
  #kontakt {
    margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
  }
  
  #ueber-mich-hero {
    background-image: url('images/sven_mobile.jpg'); /* Hier dein Bild */
  }
  
  .hero-content {
    position: absolute;
    left: 50%; /* Oder andere Werte für exakte Platzierung */
    top: 60%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px; /* Begrenzt die Breite des Textblocks */
    text-align: left;
    background: rgba(255, 255, 255, 0.832);
    padding: 20px;
    border-radius: 10px;
    }
  
  }



/* Tablets (maximale Breite von 768px) */
@media screen and (max-width: 768px) {
p {
  font-size: 1rem;
  letter-spacing: 0px;
}  
  
h1 {
  font-size: 3rem;
}
  
h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1rem;
}

ul.custom-list {
  font-size: 0.8rem; /* Kleinere Schriftgröße für Tablets */
}

.navbar-nav .nav-link {
  font-size: 1rem; /* Kleinere Schriftgröße für Tablets */
}

/* Zentrierung der Navigationselemente auf Tablets */
.navbar-nav {
  justify-content: center;  /* Zentrierung für Tablets */
}

#section {
  margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
}

#kontakt {
  margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
}

#ueber-mich-hero {
  background-image: url('images/sven_mobile.jpg'); /* Hier dein Bild */
}

.hero-content {
  position: absolute;
  left: 50%; /* Oder andere Werte für exakte Platzierung */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px; /* Begrenzt die Breite des Textblocks */
  text-align: left;
  background: rgba(255, 255, 255, 0.832);
  padding: 20px;
  border-radius: 10px;
  }

}

/* Anpassungen für Handys (maximale Breite von 480px) */
@media screen and (max-width: 480px) {
p {
  font-size: 0.8rem;
  letter-spacing: 0px;
}  
  
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1rem;
}

ul.custom-list {
  font-size: 0.8rem; /* Kleinere Schriftgröße für Tablets */
}

#section {
  margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
}

#kontakt {
  margin-bottom: 0px; /* Hier den gewünschten Abstand eintragen */
}

#ueber-mich-hero {
  background-image: url('images/sven_mobile.jpg'); /* Hier dein Bild */
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 450px;
  text-align: left;
  background: rgba(255, 255, 255, 0.832);
  padding: 20px;
  border-radius: 10px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.email-container, .phone-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen Icon und Text */
}

.spacer {
  height: 30px; /* Abstand zwischen den beiden Gruppen (E-Mail und Telefonnummer) */
}

.navbar-nav .nav-link {
  font-size: 1rem;
}

/* Zentrierung der Navigationselemente auf Handys */
.navbar-nav {
  justify-content: center;  /* Zentrierung für Handys */
}

.custom-list {
  list-style-type: none; /* Bullet Points */
  padding-left: 0; /* Keine Einrückung */
}

.custom-list li {
  color: #888888; /* Textfarbe */
  position: relative;
  padding-left: 20px; /* Fügt Platz für den Bullet Point hinzu */
  margin-bottom: 8px; /* Abstand zwischen den Punkten */
}

.custom-list li::before {
  content: '\2022'; /* Unicode für Bullet Point */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff510f; /* Orange für den Bullet Point */
  font-size: 20px; /* Größe des Bullet Points */
}

.bg-orange {
  background-color: #ff510f;
}

footer p {
  color: white !important;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover {
  text-decoration: none; /* Entfernt die Unterstreichung beim Hover */
}

/* Image Grid  */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  padding-top: 100%;
}

.image-container img {
  transition: transform 0.3s ease, filter 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.image-container:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  filter: blur(3px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 83, 33, 0.7); /* Orange, leicht transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

.overlay p {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

/* Image Grid Portfolio */
.image-container-portfolio {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  padding-top: 75%;
}

.image-container-portfolio img {
  transition: transform 0.3s ease, filter 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.overlay-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff530fe7; /* Orange, leicht transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column; /* Vertikale Anordnung der Texte */
  text-align: center; /* Zentriert den Text */
  padding: 20px; /* Optional: Gibt etwas Abstand innerhalb des Overlays */
}

.image-container-portfolio:hover .overlay-portfolio {
  opacity: 1;
}

.overlay-portfolio p {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -3px;
  color: white;
  font-size: 3rem;
  font-weight: 500;
  margin: 0;
  display: block;
}

.overlay-portfolio .second-line {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  color: white;
  font-size: 1.5rem;
  font-weight: 200;
  margin-top: 0px;
}










.bg-light-grey {
  background-color: #f0f0f0; /* Helles Grau */
}

.card {
  border: none;
  box-shadow: none;
}

.card-img-container {
  position: relative;
  width: 100%;
  height: auto;
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
}

.card-img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0s ease-in-out;
}

.card-img-container:hover .hover {
  opacity: 1;
}

.card-img-container:hover .normal {
  opacity: 0;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 100%; /* Falls die Bilder immer gleich groß sein sollen */
}

.image-container .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container:hover .hover {
  opacity: 1;
}

.image-container:hover .normal {
  opacity: 0;
}

.full-width-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}


  /* poppins-100 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/poppins-v22-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-100italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 100;
    src: url('../fonts/poppins-v22-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-200 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/poppins-v22-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-200italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    src: url('../fonts/poppins-v22-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v22-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-300italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/poppins-v22-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/poppins-v22-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-500italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/poppins-v22-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v22-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-600italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/poppins-v22-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v22-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-700italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/poppins-v22-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v22-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-800italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/poppins-v22-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/poppins-v22-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-900italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 900;
    src: url('../fonts/poppins-v22-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  
  