html, body {
  background-color: #151515; /* Hintergrund */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Schriftart/Backup */
  text-align: center; /* Textausrichtung */
  margin: 0px;
  margin-top: 0px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  scrollbar-gutter: stable; /* Platz für Scrollbar immer reservieren */
  flex-direction: column;
}
/* ===== Header Styles ===== */
.header-layout-nav-right .header-nav-list {
  justify-content: flex-end; /* Menü rechts ausrichten */
}

.header-nav-list {
  display: flex;        /* inline-flex → flex */
  justify-content: center; /* oder flex-end / space-between */
  flex-wrap: wrap;
  margin-top: 20px;
  width: 100%;          /* volle Breite */
}

.header-nav-item a,
.header-nav-item--active > a {
  text-decoration: none;     /* Unterstreichung entfernen */
  color: #e5e5e5;
  font-weight: bold;
  font-family: Arial, sans-serif;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  margin: 0 10px;
  display: inline-block; /* Damit transform gut funktioniert */
  transition: transform 0.3s ease; /* sanfte Animation */
}

.header-nav-item a:hover {
  transform: scale(1.1); /* 10% größer */  
}

.header-nav-item--active > a {        /* gleiche Farbe */
  text-decoration: underline;  
}

/* ===== Main Styles ===== */ 
.header {
  font-family: Pacifico;
  font-size: 36px; /* Schriftgröße des Namens */
  font-weight: bold; /* Schrift fett */
  color: #e5e5e5;
}

.purple {
 
  color: #5050A0;
}
.green {
  color: #7FB676;
}

.header-description {
  font-size: 24px; /* Schriftgröße des Zweitnamens */
  color: white;        /* Farbe des Zweitnamens auf Schwarz ändern */
  margin-top: -25px;   /* Abstand nach oben verringern, um ihn höher zu positionieren */
  font-weight: bold; /* vorher evtl. schon von h2 übernommen, jetzt muss es explizit */
}
/* bei contact bitte in content umbeewgen!!! */
.text a {
  color: inherit;  /* Erbt die Farbe vom Eltern-Element */
  text-decoration: underline;
  transition: transform 0.3s ease;
  display: inline-block;
}

.text a:hover {
  color: #a7d6f7;            /* Farbe beim Drüberfahren */
  transform: scale(1.05);
}
.content-header {
  color: #e5e5e5;      /* Textfarbe */
  font-size: 24px;     /* Textgröße */
  font-weight: bold;   /* optional fett */
  text-align: center;  /* optional zentrieren */
}
.text {
  color: #e5e5e5;      /* Textfarbe */
  font-size: 18px;     /* Textgröße */
  font-weight: bold;   /* optional fett */
  text-align: center;  /* optional zentrieren */
}

.button-text {
  color: #e5e5e5;      /* Textfarbe */
  font-size: 18px;     /* Textgröße */
  font-weight: bold;   /* optional fett */
  text-align: center;  /* optional zentrieren */
}


  

.main-container {
  margin: 75px auto 75px auto; /* oben 100px, horizontal zentriert */
  flex: 1;
    
  }


.top-container {
  display: flex;              /* Bild + Text nebeneinander */
  justify-content: center;    /* Horizontal zentriert */
  align-items: center;        /* Vertikal zentriert */
  gap: 30px;    
  margin-bottom: 75px;              /* Abstand zwischen Bild & Text */
}
.content {
  flex: 1;           /* Footer nach unten */
  text-align: left;   /* Linksbündig */
  font-size: 1.5rem;
  font-weight: bold; /* Fett */

  text-align: center; /* Text zentriert */
  

}


.profilbild {
  width: 150px;      /* Feste Breite */
  height: 150px;     /* Feste Höhe */
  border-radius: 50%; /* Macht das Bild rund */
  object-fit: cover; /* Füllt den Bereich, ohne das Bild zu verzerren */
  border: 4px solid #e5e5e5;

}

.purple {
 
  color: #5050A0;
}
.green {

  color: #7FB676;
}

.blue {
  
  color: #80B8F0;
}

.me {
  font-family: Pacifico;
  font-size: 36px; /* Schriftgröße des Namens */
  font-weight: bold; /* Schrift fett */
  color: #e5e5e5;
}


.text-left {
    text-align: left;   /* Überschreibt nur bei Bedarf */
}



.social-media-container,
.social-media-container2, 
.social-media-container3 {
  display: grid;
  margin: 25px auto 0 auto;  /* oben 50px Abstand, zentriert horizontal */
  max-width: 1000px;        /* Maximalbreite z. B. 900px */
  align-items: center;      /* Vertikal zentrieren */
    grid-gap: 40px;
}

.social-media-container {
  grid-template-columns: repeat(3, 1fr);
}

.social-media-container2 {
  grid-template-columns: 1fr;
  max-width: 33%;
}   

.social-media-container3 {
    grid-template-columns: 1fr;
    max-width: 30%;
}  

.button {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1); 
  padding: 20px 25px;;
  max-height: 84px;
  border-radius: 50px;
  color: black;
  transition: transform 0.3s ease;
  text-decoration: none;
  /* Wichtiger Trick: Doppelhintergrund */
  background:
      linear-gradient(#121212, #121212) padding-box, /* Innenfarbe */
      linear-gradient(130deg, #5050A0, #7FB676) border-box; /* Randfarbe */
  border: 3px solid transparent;
  justify-content: center;
}

.button:hover {
    transform: scale(1.05); /* 5% größer */
}




.icon {
  font-size: 30px;         /* ersetzt width/height */
  transition: transform 0.3s ease;
  color: #e5e5e5;
}

.button-inner {
  display: flex;
  align-items: center;       /* Icon + Text vertikal zentriert */
  gap: 20px;                 /* Abstand Icon/Text */ 
}

.button:hover .icon {
    transform: scale(1.1);
}




.business-container,
.business-container2 {
 border: #80B8F0 solid 3px; /* Rahmen */
  border-radius: 25px;      /* Ecken abrunden */
  padding: 20px;            /* Innenabstand */
  background-color: rgba(255, 255, 255, 0.1);
  margin: 75px 20px 75px 20px;         /* Abstand oben/unten, zentriert */
}
.business-container,
.business-container2 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.business-container:hover {
    transform: scale(1.1) rotate(-2deg); /* leicht größer + schräg */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* optional für mehr Effekt */
}

.business-container2:hover {
    transform: scale(1.1) rotate(2deg); /* nach rechts unten kippen */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.divider,
.divider2 {
  border: none;          /* Standardrahmen entfernen */
  height: 2px;           /* Dicke des Balkens */
  background: linear-gradient(130deg, #5050A0, #7FB676);
  margin:  70px 0px 50px;        /* Abstand oben/unten */
  max-width: 75%;
  justify-content: center; /* Zentriert den Balken */
  margin-left: auto; /* Zentriert horizontal */
  margin-right: auto; /* Zentriert horizontal */
  display: block; /* Block-Element, damit es den ganzen Platz einnimmt */
}
.divider2 {
 background: #80B8F0;
}


/* ===== Foot Styles ===== */ 
.footer {
  background-color: #222;
  color: white;
  padding: 1px;
  text-align: center;
  }


.footer a {
  color: inherit;        /* Link übernimmt Textfarbe (nicht blau) */
  text-decoration: none; /* Unterstrich entfernen */
  display: inline-block; /* Damit du Padding/Spacing kontrollieren kannst */
  margin-left: 5px;      /* optional: Abstand zum Text */
}

.icon-github {
  display: inline-block;         /* wichtig für transform */
  color: #e5e5e5;                /* Farbe */
  transition: transform 0.3s ease; 
}
.icon-github:hover {
   transform: scale(1.1);
}

.gray {
  color: gray;                     /* optisch als inaktiv markieren */
}

/* ===== Mobile Styles ===== */ 
@media (max-width: 600px) {
    .social-media-container,
    .social-media-container2,
    .social-media-container3 {
        grid-template-columns: 1fr; /* alle Inhalte untereinander */
        grid-gap: 20px;     
        max-width: 100%;            /* kleinerer Abstand auf Handy */
    }
}

