/* ------------------------
   1) Reset & Base Styles
------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: var(--creme);
    color: var(--dunkelgruen);
    scroll-behavior: smooth;
}

/* ------------------------
   2) Farbvariablen
------------------------ */
:root {
    /* Hauptfarben – angelehnt an dein Regenbogenfoto */
    --rot: #f76c5e;
    --orange: #f8a055;
    --gelb: #f9e27a;
    --gruen: #a6cf8c;
    --blau: #80bfe0;
    --violett: #b6a3de;
     --lavendel: #c9c3e6;

    /* Harmonische Basisfarben */
    --creme: #fefdf9;
    --weiss: #ffffff;
    --dunkelgruen: #374b3b;

    /* Akzentfarben für Highlights */
    --gold: #e5c158;
    --koralle: #ff8674;

    /* sanfter Verlauf für hero / buttons */
    --rainbow-gradient: linear-gradient(90deg, var(--rot), var(--orange), var(--gelb), var(--gruen), var(--blau), var(--violett));
}

/* ------------------------
   3) Layout Helpers
------------------------ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ------------------------
   4) Header
------------------------ */
.header {
    background: var(--rainbow-gradient);
    color: var(--weiss);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ------------------------
   Header mit Logo
------------------------ */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px; /* oder 60px, je nach Logo */
    width: auto;
}

.logo-text {
    font-size: 1.9rem;
    color: var(--weiss);
    font-weight: bold;
    letter-spacing: 1px;
}


.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--weiss);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
}

/* ------------------------
   5) Hero Section
------------------------ */
.hero {
    background: var(--rainbow-gradient);
    color: var(--weiss);
    text-align: center;
    padding: 6rem 1rem;
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.45);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dunkelgruen);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover {
    background: var(--koralle);
    color: var(--weiss);
    transform: scale(1.05);
}

/* ------------------------
   6) About Section
------------------------ */
.about {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--creme);
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.about img {
    max-width: 220px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about p {
    max-width: 700px; /* Dieser max-width ist bereits definiert und gut für die Textabsätze! */
    font-size: 1.1rem;
    color: var(--dunkelgruen);
    margin: 1rem auto; /* Füge margin: auto hinzu, falls es fehlt, um die Absätze in der .about Sektion zu zentrieren */
}

.ueber-mich-liste {
    /* 1. Definiert eine maximale Breite, passend zu den Absätzen */
    max-width: 700px; 
    
    /* 2. Zentriert den Block der Liste in der Mitte */
    margin: 1rem auto; 
    
    /* 3. Stellt sicher, dass der Text in der Liste linksbündig ist */
    text-align: left;
    
    /* 4. Entfernt die unnötige Standard-Einrückung links */
    padding-left: 0; 

    /* 5. Setzt die List-Style-Position für bessere optische Platzierung */
    list-style-position: outside; 
    
    /* Entferne display: inline-block; da max-width und margin: auto besser funktionieren */
}

.ueber-mich-liste li {
    margin-bottom: 0.5rem; /* Etwas Abstand zwischen den Punkten */
}

/* Diese Klasse (.ueber-mich-sektion) benötigen Sie nicht mehr, wenn Sie die about-Sektion als Container nutzen */
/* .ueber-mich-sektion {
    text-align: center; 
} */

/* ------------------------
   7) Services
------------------------ */
.services {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--blau);
    color: var(--weiss);
}
.service-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}
.card {
    background: var(--weiss);
    color: var(--dunkelgruen);
    border: 3px solid transparent;
    border-image: var(--rainbow-gradient) 1;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* ------------------------
   8) Galerie
------------------------ */
.gallery {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--creme);
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center; /* zentriert einzelne Bilder */
}

.gallery-grid img {
    width: 70%;              /* reduziert die Größe leicht */
    max-width: 600px;        /* verhindert, dass es zu groß wird */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


/* ------------------------
   9) Kontakt
------------------------ */
.contact {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--violett);
    color: var(--weiss);
}

.contact h2 {
    margin-bottom: 0.75rem;
}

.contact-intro {
    max-width: 480px;
    margin: 0 auto 2rem;
    opacity: 0.88;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 520px;
    margin: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.93);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--dunkelgruen);
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(229, 193, 88, 0.25);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form button {
    cursor: pointer;
    border: none;
    margin-top: 0.25rem;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
}

/* ------------------------
   10) Footer
------------------------ */
.footer {
    background: var(--dunkelgruen);
    color: var(--creme);
    text-align: center;
    padding: 1.5rem;
}
.footer a {
    color: var(--gold);
    text-decoration: none;
}
.footer a:hover {
    color: var(--koralle);
}

/* ------------------------
   11) Hamburger
------------------------ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 20;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--weiss);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------
   12) Responsive
------------------------ */
@media (max-width: 768px) {
    /* Header kompakt */
    .logo-img { height: 34px; }
    .logo-text { font-size: 1.1rem; letter-spacing: 0; }

    /* Hamburger sichtbar */
    .hamburger { display: flex; }

    /* Nav als Dropdown */
    .nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(55, 75, 59, 0.97);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 9;
    }

    .nav.open {
        max-height: 320px;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 1.25rem;
        gap: 0.6rem;
    }

    .nav a {
        font-size: 1rem;
        padding: 0.3rem 0;
    }

    .about-content {
        flex-direction: column;
    }

    /* Kontaktformular auf Mobile */
    .contact-form {
        padding: 1.75rem 1.25rem;
    }
}

.impressum {
    padding: 4rem 2rem;          /* gleichmäßiger Abstand rundherum */
    text-align: left;            /* Text linksbündig, wirkt natürlicher */
    max-width: 900px;            /* angenehme Lesebreite */
    margin: 0 auto;              /* zentriert die gesamte Sektion */
}

.impressum h1,
.impressum h2,
.impressum h3 {
    color: var(--dunkelgruen);
    margin-top: 2rem;
}

.impressum p,
.impressum address {
    margin-bottom: 1.2rem;
}

.impressum a {
    color: var(--koralle);
    text-decoration: underline;
}

.telomere-hinweis {
    background-color: var(--creme);
    color: var(--dunkelgruen);
    border-left: 6px solid var(--gold);
    padding: 3rem 2rem;
    margin: 4rem auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 900px;
}

.telomere-hinweis h2 {
    color: var(--dunkelgruen);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.telomere-hinweis p {
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1.2rem;
}

/* Volle Breite für den Info-Bereich */
.info-section {
    background-color: var(--lavendel);  /* deine Sekundärfarbe */
    color: var(--dunkelgruen);
    padding: 5rem 0;
    width: 100%;             /* nimmt 100% der Seitenbreite ein */
    margin: 0;               /* entfernt eventuelle Einrückungen */
}

.info-section .container {
    max-width: 1100px;       /* Text bleibt schön lesbar */
    margin: 0 auto;
    padding: 0 2rem;         /* etwas Abstand links/rechts */
}

.info-section h2 {
    text-align: center;
    color: var(--dunkelgruen);
    margin-bottom: 2rem;
}

.info-section .card-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    counter-reset: step;
}

.info-section .card {
    background: var(--weiss);
    border: none;
    border-image: none;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 6px 24px rgba(55, 75, 59, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    counter-increment: step;
}

/* Regenbogen-Streifen oben */
.info-section .card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rainbow-gradient);
}

/* Große Schrittnummer im Hintergrund */
.info-section .card::before {
    content: "0" counter(step);
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(55, 75, 59, 0.05);
    line-height: 1;
    pointer-events: none;
}

.info-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(55, 75, 59, 0.13);
}

.info-section .card h3 {
    color: var(--dunkelgruen);
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.info-section .card p {
    color: #5a6b5e;
    line-height: 1.75;
    font-size: 1rem;
}

/* ------------------------
   12) Preise
------------------------ */
.preise-liste {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: 2.5rem 0;
    align-items: start;
}

.preis-box {
    background: var(--weiss);
    border: none;
    border-image: none;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 24px rgba(55, 75, 59, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Regenbogen-Streifen oben */
.preis-box::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rainbow-gradient);
}

.preis-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(55, 75, 59, 0.14);
}

.preis-box h2 {
    color: var(--dunkelgruen);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.preis-box p {
    color: #5a6b5e;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* Preis-Anzeige */
.preis-wert {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dunkelgruen);
    line-height: 1.1;
    margin: 0.25rem 0 0.1rem;
}

.preis-alt {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 0.4rem;
}

/* Hervorgehobene Karte */
.preis-box.featured {
    background: linear-gradient(160deg, #faf8ff 0%, var(--weiss) 100%);
    box-shadow: 0 10px 36px rgba(182, 163, 222, 0.28);
    transform: translateY(-4px);
}

.preis-box.featured::after {
    height: 5px;
}

/* "Beliebt"-Badge */
.preis-box.featured::before {
    content: "Beliebt";
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    background: var(--rainbow-gradient);
    color: var(--weiss);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.preis-box.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(182, 163, 222, 0.35);
}


