/* HOMEPAGE */

/* Allgemeine Einstellungen */
body {
    font-family: 'Jost', sans-serif; /* Schriftart für die ganze Seite */
    margin: 0;
    padding: 0;
}

/* Header mit weißem Hintergrund und schwarzer Schrift */
header {
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Für einen kleinen Schatten unter dem Header */
}

/* Header Styling */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 15px 0;  /* Weniger Abstand oben & unten */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    height: 120px;  /* Reduziert die Höhe des Headers */
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: -10px; /* Verkürzt den Abstand zum Menü */
}

/* Logo Styling */
.logo {
    width: 150px;  /* Kleinere Logo-Größe */
    height: auto;
}

/* Titel unter dem Logo */
.site-title {
    font-size: 1.2rem;  /* Kleinere Schriftgröße */
    margin-top: 2px;  /* Weniger Abstand zum Logo */
}

/* Navigation Styling */
nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px; /* Etwas weniger Abstand zwischen den Menü-Punkten */
}

nav ul li a {
    font-size: 1.0rem;  /* Kleinere Schriftgröße */
}



/* Menüleiste */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: black; /* Schwarze Schrift für Links */
    text-decoration: none;
    font-weight: 300; /* Leichtes Gewicht für die Schrift */
    transition: color 0.3s ease; /* Weicher Übergang für den Hover-Effekt */
}

nav ul li a:hover {
    color: #f56fa1; /* Rosa beim Hover */
}


/* Hero-Bereich mit Hintergrundbild */
.hero {
    background-image: url("../images/blumen2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;  /* Fixiert das Bild beim Scrollen */
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative; /* Für das Bild im Vordergrund */
}

.moontime {
  font-family: 'Great Vibes', cursive;
  font-weight: normal;
}


/* Das normale Bild (Aufmacherbild) */
.hero-image {
    position: absolute; /* Bild aus dem normalen Fluss holen */
    top: 20px;  /* Abstand von oben */
    left: 50%;  /* Bild zentrieren */
    transform: translateX(-50%); /* Bild perfekt horizontal zentrieren */
    width: 80%;  /* Kann angepasst werden, je nach Bildgröße */
    max-width: 1200px;  /* Maximale Breite des Bildes */
    z-index: 1; /* Bild bleibt vor dem Hintergrund */
}

/* Hintergrund abdunkeln für bessere Lesbarkeit */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Text über dem Bild */
.hero-text {
    position: relative;
    font-size: 1.6rem;
    z-index: 3; /* Text bleibt oben */
}

/* Kleines rundes Bild */
.about-image {
    width: 170px; /* Größe des Bildes */
    height: 170px; /* Gleiche Höhe wie die Breite für das runde Bild */
    border-radius: 50%; /* Macht das Bild rund */
    object-fit: cover; /* Sorgt dafür, dass das Bild gut ins Format passt */
    margin-bottom: 5px; /* Abstand zum unteren Inhalt (zur Überschrift) *
    border: 0px solid #f56fa1; /* Optional: Rand in Rosa um das Bild */
}

/* Abschnitt "Das bin ich" */
.about {
    padding: 25px 10px; /* Abstand um den Abschnitt */
    text-align: center;
    background-color: #ffffff; /* Heller Hintergrund für den Abschnitt */
}

/* Überschrift "Das bin ich" */
.about-title {
    color: #f56fa1; /* Rosa Farbe, die beim Hover verwendet wird */
    font-size: 36px; /* Große Schriftgröße für die Überschrift */
    font-weight: 400; /* Schriftgewicht passend zu "Jost" */
    margin-bottom: 20px; /* Abstand zum darunterstehenden Text */
    transition: color 0.3s ease; /* Weicher Übergang für die Farbe */
}

/* Text unter der Überschrift */
.about-text {
    font-size: 18px; /* Normale Schriftgröße für den Text */
    color: #333; /* Dunkle Schriftfarbe für den Text */
    line-height: 1.6; /* Bessere Lesbarkeit mit Zeilenabstand */
    max-width: 800px;
    margin: 0 auto; /* Zentriert den Text */
}

/* Hover-Effekt für die Überschrift (für den Fall, dass man mit der Maus drüber fährt) */
.about-title:hover {
    color: #d24e81; /* Etwas dunkleres Rosa beim Hover */
}


/* Allgemeines Styling für Profilabschnitte */
.profil {
    text-align: center;
    margin: 40px auto;
    width: 60%;
}

/* Styling für runde Bilder */
.profil-bild {
    width: 150px;  /* Größe des ersten runden Bildes */
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;  /* Zentriert das Bild */
}

/* Spezielle Klasse für das kleinere Bild */
.klein {
    width: 80px;  /* Kleinere Größe */
    height: 80px;
}

/* Runder Button */
.runder-button {
    display: inline-block;
    background-color: #ffffff; /* weiß */
    color: #ffffff; /* Weiße Schrift */
    font-size: 1.2rem;
    font-family: 'Jost', sans-serif;
    color:#f56fa1;
    text-decoration: none; /* Kein Unterstrich */
    padding: 15px 30px; /* Innenabstand */
    border: 1px solid #f56fa1; /* Optional: Rand in Rosa um das Bild */
    border-radius: 50px; /* Macht den Button rund */
    transition: background-color 0.3s ease-in-out;
    text-align: center;
    margin: 50px auto; /* Zentriert den Button */
    display: block;
    width: fit-content;
}

/* Hover-Effekt */
.runder-button:hover {
    background-color: #f6d6e6; /* Dunkleres Pink beim Darüberfahren */
}

/* KONTAKTSEITE */

/* === BILDER-SECTION === */
.bilder-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
}

.bilder-container img {
    width: 200px; /* Größe der quadratischen Bilder */
    height: 200px;
    object-fit: cover;
    border-radius: 0px; /* Leicht abgerundete Ecken */
}

/* === KONTAKT-INFORMATIONEN === */
.kontakt-info, .feedback {
    font-size: 18px;
    text-align: center;
    width: 60%;
    margin: 50px auto;
}

.kontakt-info h2, .feedback h2 {
    font-size: 36px;
    font-family: 'Jost', sans-serif;
    color: #f56fa1 !important; /* Hellrosa */
    margin-bottom: 15px;
}


/* === BEWERTUNGSSTERNE === */
.rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-direction: row-reverse; /* Reihenfolge umkehren */
}

.rating input {
    display: none; /* Versteckt das Radio-Input */
}

.rating label {
    font-size: 2.3rem;
    color: transparent;
    -webkit-text-stroke: 0.3px #f56fa1 !important; /* Rosa Umrandung */
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #f56fa1 !important; /* Rosa Füllung */
}


/* === KONTAKTFORMULAR === */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 20px auto;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 18px;
}

textarea {
    resize: none;
}

/* === SENDEN-BUTTON === */
.runder-button {
display: inline-block;
    background-color: #ffffff; /* Pink */
    color: white; /* Weiße Schrift */
    font-size: 1.2rem;
    font-family: 'Jost', sans-serif;
    color:#f56fa1;
    text-decoration: none; /* Kein Unterstrich */
    padding: 15px 30px; /* Innenabstand */
    border: 1px solid #f56fa1; /* Optional: Rand in Rosa um das Bild */
    border-radius: 50px; /* Macht den Button rund */
    transition: background-color 0.3s ease-in-out;
    text-align: center;
    margin: 50px auto; /* Zentriert den Button */
    display: block;
    width: fit-content;
}

/* Hover-Effekt */
.runder-button:hover {
    background-color: #f6d6e6; /* Dunkleres Pink beim Darüberfahren */
}
  
/* Testimonials */
      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      line-height: 1.6;
      color: #333;
      background-color: #ffffff;
    }
    
    .testimonials-section {
      padding: 2rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
    }
    
    .section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 400;
      color: #f56fa1;
      margin-bottom: 2rem;
    }
    
    .testimonials-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.3rem;
      justify-content: center;
    }
    
    .testimonial-card {
      background-color: #f3f3f3;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      position: relative;
    }
    
    .testimonial-content {
      margin-bottom: 1.5rem;
      font-style: italic;
      position: relative;
      padding-left: 1.5rem;
    }
    
    .testimonial-content::before {
      content: '"';
      font-size: 4rem;
      color: #f56fa1;
      opacity: 0.3;
      position: absolute;
      top: -20px;
      left: -15px;
    }
    
    .testimonial-author {
      display: flex;
      flex-direction: column;
    }
    
    .author-info h4 {
      margin: 0;
      color: #2c3e50;
      font-size: 1.1rem;
    }
    
    .author-info p {
      margin: 0;
      color: #7f8c8d;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    
    .star-rating {
      display: flex;
      margin-bottom: 0.8rem;
    }
    
    .star {
      color: #f56fa1;
      font-size: 2.0rem;
      margin-right: 0.2rem;
    }
    
    .star-empty {
      color: #e0e0e0;
    }
    
}