/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #333;
    color: ;
}
/*zusätzlich für clonecss generiert unterhalb*/
.header-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: #333;
  color: white;
  flex-wrap: wrap;
}

.header-left,
.profil-info,
.header-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* 1. Aktualisierte Klasse */
.profile-big {
  width: 200px;
    height: 200px;
    border-radius: 50%;
    
    /* WICHTIG: Stellt sicher, dass das Bild skaliert, aber NICHT verzerrt wird */
    object-fit: cover; 
    
    /* Verschiebt den sichtbaren Bereich nach oben */
    object-position: top;
	
  
  /* Wichtig für die Positionierung des Pseudo-Elements */
  position: relative; 
  overflow: hidden; 
	 /* Erzeuge einen transparenten Rahmen, durch den das Leuchten sichtbar wird */
  border: none; 

  /* Radius und Übergang beibehalten */
  
  transition: transform 0.3s ease;
  
 
	
  
 

/* Kombinierter Stil der Countdown-Box */
  background: rgba(255, 255, 255, 0.1); /* Hintergrund der Countdown-Box */
         /* Milchglas-Effekt der Countdown-Box */
  
  /* Der ursprüngliche statische Border der Countdown-Box */
  border: 1px solid rgba(255, 255, 255, 0.2); 
  
  border-radius: 50%; /* Das Bild soll rund sein */
  
  padding: 2px; /* Padding der Countdown-Box */
  
  /* Der äußere Box-Shadow der Countdown-Box */
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  
  transition: transform 0.3s ease; /* Transition der Countdown-Box */

 
}


}

/* 3. Keyframes (bleibt unverändert) */
@keyframes rotate {
  to {
    transform: rotate(360deg); 
  }
}

/* Der Hover-Effekt des Hauptbildes (bleibt unverändert) */
.profile-big:hover {
  transform: translateY(-4px) scale(1.05);
}/* Ende */

.profile-big:hover {
  transform: translateY(-4px) scale(1.05);
}

.profil-info {
  flex-direction: column;
  text-align: center;
  gap: 15px;
}

.profilname {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.kontakt-icons {
  display: flex;
  gap: 30px;
}

.icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#countdown-container {
  display: flex;
  justify-content: center;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.countdown-box:hover {
  transform: scale(1.05);
}

.countdown-box span {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #00ffff;
  animation: pulse 1s infinite alternate;
}

.countdown-box label {
  font-size: 14px;
  color: #ddd;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
/*zusätzlich für clonecss generiert oberhalb*/

/* Header-Styling */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: black;
	font size: bold;
    text-decoration: none;
}

button.nav-button {
    all: unset;
    color: grey;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
}

button.nav-button:hover {
    text-decoration: underline;
}

/* "Über mich"-Sektion */
section#about {
    padding: 20px;
    background: #e2e2e2;
    text-align: center;
	color: black;
}
h2 {color: black;}



/* Gestaltung des runden, grünen Buttons mit 3D-Effekt */
#toggleButton2 {
    background-color: #4684bbdc;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 0 4px #3e3f3e;
    cursor: pointer;
    transition: all 0.2s;
}

#toggleButton2:active {
    box-shadow: 0 2px #85102942;
    transform: translateY(2px);
}

#toggleButton2:hover {
    background-color: #5a33333a;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
}
/* Tooltip-Container */
.tooltip-container {
    position: relative;
    display: inline-block;
}

/* Tooltip-Text */
.tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: yellow;
    color: black;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
    position: absolute;
    top: -40px; /* über dem Button */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
}

/* Tooltip anzeigen beim Hover */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

a.button:hover {
    background-color: #0056b3;
}

/* Projekte-Sektion */
section#projekte {
    padding: 20px;
}

/* Kontakt-Sektion */
section#kontakt {
    padding: 20px;
    background-color: #e2e2e2;
    text-align: center;
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* NEUE REGELN für die Fußzeilen-Navigation */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0; /* Etwas Abstand nach oben, kein Abstand nach unten */
}

.footer-nav ul li {
    display: inline; /* Lässt die Links nebeneinander stehen */
    margin: 0 10px; /* Abstand zwischen den Links */
}

.footer-nav ul li a {
    color: #bbb; /* Etwas helleres Grau für bessere Lesbarkeit */
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: white; /* Weiß beim Hover */
    text-decoration: underline;
}

/* Für kleinere Bildschirme */
@media (max-width: 600px) {
    .footer-nav ul li {
        display: block; /* Links untereinander stapeln */
        margin: 5px 0;
    }
}

/* Für kleinere Bildschirme 
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}*/
