    :root {
        --lila: #c79ce0;
        --helllila: #e9d5f8;
        --dunkellila: #62457d;
        
        /* --rosa-hell: #F7C7DB; */
        --rosa-hell: rgb(244, 231, 230);
        /* --rosa: #EFA8C8; */
        --rosa: #d57696;
        --rosa2: #f3c8e0;
        --lavender: #DFB3DF;
        --flieder: #b48db3;
        
        --gruen: #b5e0c7;
        --hellgruen: #d4f5dc;
        --dunkelgrau: #444;

        --mint-hell: #E5FFF7;
        --mint: #3b8791;

        --grau-hell: #F2F2F5;
        --grau: #D9D9E0;
        --grau-dunkel: #494B55;
        --grau-text: #2E2F38;
        
        --graurot: hsla(348, 28%, 40%, 0.3);
        
/*         --lila-hell: #F7ECFF;
        --lila: #A475B1;
        --lila-mittel: #8B5E99;
        --lila-dunkel: #6C468C;
        */    
    }


    body {
        font-family: "Comic Sans MS", "ComicSans", "Comic Neue", cursive, sans-serif;
/*         background: #fbf6fd; */ /* flieder / hell-lila */
        background: white;
        color: var(--dunkellila);
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    header {
        height: 300px;
        background: url('herzenskinder.webp') center/cover no-repeat;
        position: relative;
        color: #fff;
        padding: 15px;
        text-align: center;
        overflow: hidden;
    }

    .header-overlay {
        position: absolute;
        inset: 0;
        /*background: rgba(82, 58, 102, 0.45);*/
        /* sanftes Lila mit Transparenz */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-content {
        /*padding: 1rem 2rem;*/
        backdrop-filter: blur(5px);
        border-radius: 3rem;
        /*border-radius: 0.75rem;*/
    }

    .header-content h1 {
        margin: 0;
        font-size: 2.5em;
        font-weight: 700;
    }

    .header-content p {
        /*margin: 10px 0 0;*/
        /*font-weight: 500;*/
        font-size: 1.2em;
        letter-spacing: 0.5px;
    }

    /* --- NAVBAR --- */
    nav {
        position: sticky;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
        height: 60px;
        background-color: var(--graurot);
        backdrop-filter: blur(8px);
        transition: height 0.4s ease, background-color 0.4s ease, box-shadow 0.3s ease;
        ;
        /*	  background: var(--hellgruen);
	  border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      text-align: center;*/
        /*padding: 10px;*/
    }

    /* --- LOGO --- */
/*     .logo img {
        height: 60px;
        transition: height 0.4s ease;
    }
 */
    /* --- LINKS --- */
    .nav-links {
        display: flex;
        gap: 10px;
    }

    /* --- LINKS --- (nav a) */
    .nav-links a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-weight: bold;
        /*font-size: 1.2rem;*/
        transition: font-size 0.4s ease;
    }

    /* Bild unter dem Header */
/*     .logo-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
 */
    /* --- Hamburger Icon --- */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /*width: 30px;
      height: 24px;*/
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    /* --- CSS Scroll Animation (wenn unterstützt) --- */
/*     @supports (animation-timeline: scroll()) {
        body::before {
            content: "";
            display: block;
            height: 1px;
            scroll-timeline-name: shrinkScroll;
            scroll-timeline-axis: vertical;
        }

        @keyframes shrink {
            from {
                height: 100px;
                background-color: rgba(0, 0, 0, 0.3);
            }

            to {
                height: 60px;
                background-color: rgba(0, 0, 0, 0.8);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
        }

        nav {
            animation: shrink linear both;
            animation-timeline: shrinkScroll;
            animation-range: 0% 100px;
        }

        @keyframes shrinkLogo {
            from {
                height: 60px;
            }

            to {
                height: 40px;
            }
        }

        .logo img {
            animation: shrinkLogo linear both;
            animation-timeline: shrinkScroll;
            animation-range: 0% 100px;
        }

        @keyframes shrinkText {
            from {
                font-size: 1.2rem;
            }

            to {
                font-size: 1rem;
            }
        }

        .nav-links a {
            animation: shrinkText linear both;
            animation-timeline: shrinkScroll;
            animation-range: 0% 100px;
        }
    }*/
 
    /* --- Fallback mit JS (.shrink) --- */
/*     nav.shrink {
        height: 60px;
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    nav.shrink .logo img {
        height: 40px;
    }

    nav.shrink .nav-links a {
        font-size: 1rem;
    }
 */
    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            flex-direction: column;
            align-items: center;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .nav-links.active {
            max-height: 500px;
        }

        .hamburger {
            display: flex;
        }
    }

    /* --- Hamburger Animation --- */
    .hamburger.open div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    main {
        padding: 20px;
        color: var(--dunkellila);
    }

    section {
        margin: 2.5rem 0;
        position: relative;
        /* wichtig für absolute shapes */
        padding: 2rem 2.6rem;
        border-radius: 3rem;
        /*margin-bottom: 30px;*/
    }

    section h2 {
        margin: 0;
        font-size: 1.8em;
        margin-bottom: 1.2rem;
    }

    /* make section content above shapes */
    .section-content {
        position: relative;
        z-index: 1;
    }

    /* Verspielte Hintergrundformen */
    .shape {
        position: absolute;
        /*overflow: hidden; */
        border-radius: 50%;
        opacity: 0.3;
        z-index: -1;
    }

    .shape.lila {
        background: var(--lila);
    }

    .shape.rosa {
        background: var(--rosa);
    }

    .shape.gruen {
        background: var(--gruen);
    }

    /* Helllila */
    .helllila {
        background: var(--helllila);
        color: var(--dunkellila);
    }

    /* Dunkellila */
    .dunkellila {
        background: var(--lila);
        color: #fff;
    }

    .dunkellila h2 {
        color: #fff;
    }

    /* Rosa */
    .rosa {
        background: var(--rosa-hell);
        color: var(--rosa);
    }

    /* Mint */
    .mint {
        background: var(--mint-hell);
        color: var(--mint);
    }

    /* Lavender */
    .lavender {
        background: var(--lavender);
        color: #fff;
    }

    /* Button Styling */
    #terminanfrage .btn {
        display: inline-block;
        margin: 1.0rem 0;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        font-weight: bold;
/*         color: #4b0082; */
        background-color: #fff;
        border: none;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    #terminanfrage .btn:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    }

    #terminanfrage .btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* About */
    .about {
        flex: 1 1 420px;
        min-width: 240px;
    }

    .about h2 {
        color: var(--dunkellila);
        margin-top: 0;
    }

    .about ul {
        margin: 0.6rem 0 0 1.1rem;
    }

    /* Dafuer */
    .dafuer {
        background: var(--lila);
        color: #fff;
    }

    .dafuer h2 {
        color: #fff;
        text-align: center;
        margin-top: 0;
    }

    .dafuer ul {
        max-width: 720px;
        margin: 1rem auto 0;
        padding-left: 1.2rem;
        line-height: 1.5;
    }

    /* Vision */
    #vision h2 {
        margin-top: 0;
        text-align: center;
    }

    #vision p {
        max-width: 800px;
        margin: 0.6rem auto 0;
        text-align: center;
        font-size: 1.05rem;
    }

    /* Leitbild */
    #leitbild h2 {
        /* margin-top: 0; */
        text-align: center;
    }

    #leitbild p {
 /*        max-width: 800px;
        margin: 0.6rem auto 0;
 */        text-align: center;
/*         font-size: 1.05rem;
 */    }

    /* Grundprinzipien */
    #grundprinzipien {
        text-align: center;
        animation: fadeIn 1s ease;
    }

    #grundprinzipien h2 {
        margin-bottom: 3rem;
    }

    #grundprinzipien ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    #grundprinzipien li {
        background: var(--lila);
        color: #fff;
        padding: 1.2rem 1.5rem;
        border-radius: 1rem;
        text-align: left;
        width: 280px;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
    }

    #grundprinzipien li h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    #grundprinzipien li p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Angebot */
    #angebot h2 {
        margin-top: 0;
        text-align: center;
    }

    #angebot ul {
        padding-left: 1.2rem;
        line-height: 1.5;
    }

  table.kosten {
    width: 100%;
	max-width: 600px;
    border-collapse: collapse;
    margin-top: 2em;
    font-family: Arial, sans-serif;
  }

  table.kosten th, table.kosten td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    text-align: left;
  }

  table.kosten th {
    background-color: #f5f5f5;
    font-weight: 600;
  }
  
  table.kosten th.cost-col {
    text-align: right;
  }

  table.kosten tr:nth-child(even) {
    background-color: #fafafa;
  }

  /*table.kosten tr:hover {
    background-color: #f0f0f0;
  }*/
  
  table.kosten td.cost-col {
    text-align: right;
  }
  
    footer {
        /* background: linear-gradient(135deg, var(--rosa), --rosa-hell); */
        background: var(--rosa-hell);
        color: var(--flieder);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        text-align: center;
        padding: 15px;
        font-size: 0.9em;
    }
    
    footer a {
        color: var(--flieder);
        text-decoration: none;
        transition: color 0.3s;
    }

    footer a:hover {
        color: var(--rosa); /* leichtes Hervorheben beim Hover */
        text-decoration: underline;
    }