/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navigationsleiste */
header {
    background: #333;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo-Styling */
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0px 20px 30px rgba(255, 255, 255, 0.3); /* Schatten-Effekt */ 

}

/* Navigation Flexbox-Layout */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Standard-Navigation */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Navigation horizontal */
.nav-links li {
    margin: 0 15px;
    position: relative; /* Wichtig für Dropdown */
}

/* Link-Styling */
.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    display: flex;
}

/* Hover-Effekt */
.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Dropdown-Menü */
.nav-links .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    width: 180px;
    text-align: left;
    flex-direction: column;
    padding: 10px 0;
}

.nav-links .dropdown li {
    padding: 10px;
}

/* Dropdown sichtbar machen, wenn Parent "active" ist */
.nav-links li.active .dropdown {
    display: flex;
}

/* Burger-Menü Button */
.burger-menu {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .burger-menu {
        display: block; /* Burger-Menü auf Mobile anzeigen */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


/* Footer */
footer {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}


/* Navigationsleiste */
header {
    background: #333;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Platz für den Hauptinhalt, damit das Video nicht unter die Navigation rutscht */
body {
    padding-top: 80px; /* Gleiche Höhe wie die Navigation */
}

/* Standard Video-Styling für Desktop */
.video-container {
    width: 80%;
    max-height: 500px;
    margin: 20px auto; /* Abstand zur Navigation */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: none; /* Schatten entfernen */
}

/* Video & iFrame Styling */
.video-container video,
.video-container iframe {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    border: none; /* Falls Rahmen angezeigt wird */
}

/* Mobile Ansicht: Video nicht zu klein werden lassen */
@media screen and (max-width: 770px) {
    .video-container {
        width: 100%; /* Volle Breite nutzen */
        height: auto;
        max-height: 15vh; /* Höher als 5% für bessere Sichtbarkeit */
        min-height: 100px; /* Mindestens 100px hoch, damit es sichtbar bleibt */
        margin-top: 10px; /* Abstand zur Navigation */
    }

    .video-container video,
    .video-container iframe {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Sicherstellen, dass das Video nicht gestaucht wird */
        border-radius: 10px;
        border: none; /* Falls Rahmen angezeigt wird */
    }
}




/* Allgemeines Styling */
main {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Hero-Bereich */
.hero {
    padding: 85px 10px;
    margin-top: -5%;
}

.hero h1 {
    font-size: 2.5em;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #ccc;
}

/* Dienstleistungen */
.services {
    padding: 50px 20px;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
}

.service-box img {
    width: 50px;
    margin-bottom: 15px;
}

.service-box h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Call-to-Action */
.cta {
    padding: 50px 20px;
    background: #333;
    color: white;
    border-radius: 5px;
}

.cta h2 {
    font-size: 2em;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Erfolgszahlen */
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.stat-box h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
}

/* Workflow (Arbeitsprozess) */
.workflow {
    text-align: center;
    padding: 60px 20px;
}

.workflow-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 22%;
    min-width: 200px;
    transition: transform 0.3s ease-in-out;
}

.step:hover {
    transform: translateY(-10px);
}

.step img {
    width: 50px;
    margin-bottom: 15px;
}

.step h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Logo-Bereich unter dem Video */
.logo-container {
    text-align: center;
    margin: auto;
}

.logo-container img {
    width: 80%;  /* Das Logo nimmt 80% der Seitenbreite ein */
    max-width: 600px;  /* Maximal 600px, damit es nicht zu groß wird */
    height: auto;  /* Proportionale Skalierung */
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Abrundung der Ecken */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Schatten-Effekt */
}

/* Slider Container */
.image-slider {
    width: 100%;
    height: 400px; /* Maximale Höhe */
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    
}

/* Slider Container */
.image-slider {
    width: 100%;
    max-width: 800px;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Bilder im Slider */
.slide img {
    width: 100%;
    height: 400px; /* Einheitliche Höhe */
    object-fit: cover; /* Sorgt dafür, dass alle Bilder gleichmäßig passen */
    border-radius: 20px; /* Gleiche Abrundung wie der Container */
}



.image-slider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); /* Schatten oben */
    pointer-events: none; /* Damit es nicht klickbar ist */
}



/* Slider-Bilder */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
    border-radius: 20px;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Erstes Bild direkt sichtbar machen */
.slide:first-child {
    opacity: 1;
    position: relative; /* Damit es nicht überlappt */
}

/* Erstes Bild wird beim Start sichtbar */
.slide.active {
    opacity: 1;
    position: relative;
}

/* Leistungen Hero-Bereich */
.hero {
    text-align: center;
    padding: 85px 20px;
}

.hero h1 {
    font-size: 2.5em;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    color: #666;
}

/* Leistungen-Bereich */
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 20px;
    background: #f9f9f9;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
    text-align: center;
}

.service-box img {
    width: 80px;
    margin-bottom: 15px;
}

.service-box h2 {
    color: #333;
    margin-bottom: 10px;
}

.service-box p {
    color: #666;
}

/* Detaillierte Preisübersicht */
.detailed-pricing {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    margin-bottom: 5%;
}

.detailed-pricing h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.detailed-pricing p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

/* Preis-Tabelle */
.pricing-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.pricing-table th {
    background: #333;
    color: white;
}

.pricing-table tr:nth-child(even) {
    background: #f9f9f9;
}

.pricing-table td {
    color: #333;
}

/* Hinweis zur Preisgestaltung */
.pricing-notice {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffeeba;
    border-left: 5px solid #ffcd39;
    border-radius: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-notice p {
    font-size: 1.1em;
    color: #856404;
    margin-bottom: 10px;
}

.pricing-notice .btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.pricing-notice .btn:hover {
    background: #333;
}

.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* FAQ-Fragen-Styling */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3 {
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item:hover {
    background: #e9ecef; /* Heller Hover-Effekt */
}

/* Das Plus/Minus Symbol */
.faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #007BFF;
}

/* Antwort verstecken */
.faq-item p {
    display: none;
    font-size: 1em;
    margin-top: 5px;
    padding-top: 10px;
}


.testimonials {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.testimonial {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.why-us {
    text-align: center;
    padding: 50px 20px;
    background: #333;
    color: white;
    margin-bottom: 10%;
}

.why-us ul {
    list-style: none;
    padding: 0;
}

.why-us li {
    font-size: 1.2em;
    margin-bottom: 10px;
}


/* Über uns Container */
.about {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.about img {
    width: 20%;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.5;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Allgemeine Styling-Anpassungen für die Kontaktseite */
.contact-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Überschrift */
.contact-section h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

/* Einleitungstext */
.contact-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* Container für die Kontaktkarten */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Jede Kontaktkarte */
.contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icons in den Karten */
.contact-card i {
    font-size: 32px;
    color: #007BFF;
    margin-bottom: 10px;
}

/* Titel in den Karten */
.contact-card h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

/* Links */
.contact-card a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Abschluss-Text */
.contact-footer {
    font-size: 16px;
    color: #666;
    margin-top: 30px;
}

/* Werte-Bereich */
.values {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Überschrift */
.values h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Container für die Werte-Boxen */
.values-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ermöglicht Umbruch auf kleineren Bildschirmen */
}

/* Einzelne Werte-Box */
.value-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Titel in der Box */
.value-box h3 {
    font-size: 22px;
    color: #007BFF;
    margin-bottom: 10px;
}

/* Beschreibung in der Box */
.value-box p {
    font-size: 16px;
    color: #555;
}

/* Mobile Ansicht: Werte-Boxen untereinander */
@media screen and (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-box {
        width: 90%;
    }
}

.impressum {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.impressum h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.impressum p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.impressum a {
    color: #007BFF;
    text-decoration: none;
}

.impressum a:hover {
    text-decoration: underline;
}

.datenschutz {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.datenschutz h1, .datenschutz h2 {
    color: #333;
    margin-bottom: 15px;
}

.datenschutz p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.datenschutz a {
    color: #007BFF;
    text-decoration: none;
}

.datenschutz a:hover {
    text-decoration: underline;
}
/* Wellen-Animation */
.wave-image-section {
    text-align: center;
    padding: 40px 0;
}

.wave-container {
    width: 60%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
  
}

/* Neuer Schatten-Wrapper */
.wave-shadow-wrapper {
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.3); /* Schatten-Effekt */ 
}

.wave-image {
    width: 100%;
    height: auto;
    display: block;
    clip-path: url(#waveClip);
    -webkit-clip-path: url(#waveClip);
    

}


/* schräges img oben und unten*/
.angled-fullwidth-image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.angled-fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
}

/* News-Section */
.news-slider-section {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8f8;
}

.news-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
    overflow: hidden;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    height: auto;        /* dynamisch */
    min-height: 200px;
}

.news-slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}




/* Oster event */
.easter-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bunny {
    position: absolute;
    width: 80px;
    opacity: 0.8;
}

/* Individuelle Bewegungen */
.bunny-a {
    animation: floatA 30s infinite linear alternate;
}

.bunny-b {
    animation: floatB 40s infinite linear alternate;
}

.bunny-c {
    animation: floatC 35s infinite linear alternate;
}

/* Hasenpfad 1 */
@keyframes floatA {
    0% { top: 10%; left: 5%; transform: rotate(0deg); }
    25% { top: 20%; left: 80%; transform: rotate(15deg); }
    50% { top: 70%; left: 60%; transform: rotate(-10deg); }
    75% { top: 50%; left: 20%; transform: rotate(20deg); }
    100% { top: 10%; left: 5%; transform: rotate(0deg); }
}

/* Hasenpfad 2 */
@keyframes floatB {
    0% { top: 80%; left: 0%; transform: scale(0.9); }
    25% { top: 60%; left: 90%; transform: scale(1.1); }
    50% { top: 30%; left: 70%; transform: scale(1); }
    75% { top: 10%; left: 20%; transform: scale(1.05); }
    100% { top: 80%; left: 0%; transform: scale(0.9); }
}

/* Hasenpfad 3 */
@keyframes floatC {
    0% { top: 5%; left: 100%; transform: rotate(0deg); }
    25% { top: 40%; left: 60%; transform: rotate(-10deg); }
    50% { top: 60%; left: 30%; transform: rotate(10deg); }
    75% { top: 40%; left: 10%; transform: rotate(-5deg); }
    100% { top: 5%; left: 100%; transform: rotate(0deg); }
}


/* ---- Promo-Section für fertige Templates ---- */
.templates-promo {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    border-radius: 1rem;
  }
  
  .templates-promo__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .templates-promo__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4); /* leichtes Overlay */
    width: 90%;
    max-width: 600px;
    border-radius: 0.5rem;
  }
  
  .templates-promo__overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .templates-promo__overlay p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .templates-promo__btn {
    display: inline-block;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: background 0.2s ease;
  }
  
  .templates-promo__btn:hover {
    background: #f0f0f0;
  }
  

/* 1. Container auf 80% Breite zentrieren und max. 800px */
.template-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    
    width: 80%;          /* traditionell: nicht volle Breite */
    max-width: 800px;    /* bewährter Maximalwert für zwei Cards */
    margin: 4rem auto;   /* zentriert mit Abstand oben/unten */
  }
  
  /* 2. Cards strikt auf 350px Basis, kein Aufblähen */
.template-card {
    position: relative;    /* für absolute Badges notwendig */
    overflow: visible;     /* Badge darf über den Rand hinausragen */
    text-align: center;
    
    flex: 0 1 350px;       /* 0-grow = nicht aufblasen, 1-shrink = schrumpfen */
    max-width: 350px;      /* bewährte fixe Obergrenze */
  }
  
  
  /* 3. Bild- und Button-Styling bleibt klassisch */
  .template-card__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .template-card__btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  
  .template-card__btn:hover {
    background: #666;
  }
  
  .template-cards__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
  }
/* Diagonaler Badge (“Bestseller”-Balken) */
.template-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%) rotate(45deg);
    background-color: #e63946;
    color: #fff;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
  }
  
  /* Für die elegante Vorlage kannst du eine andere Farbe nehmen */
  .template-card--elegant .template-card__badge {
    background-color: #2a9d8f;
  }
  
  

 /* ---- Stylischer Info-Bereich mit Halbkreis rechts (Feintuning) ---- */
.template-info {
    position: relative;
    overflow: hidden;
  
    /* oben/unten 4rem, rechts 3rem Abstand, links bündig */
    margin: 4rem 3rem 4rem 0;
  
    /* oben/rechts/unten Padding wie gehabt, links etwas extra für Text */
    padding: 4rem 1rem 4rem 3rem;
  
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  
    /* linke Ecken moderat, rechte Ecken sehr groß = Halbkreis */
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
  }
  
 /* ---- Stylischer Info-Bereich mit Halbkreis rechts (50 % getrimmt) ---- */
.template-info {
    position: relative;
    overflow: hidden;
  
    /* oben/unten 4rem, rechts 50 % Abstand, links bündig */
    margin: 4rem 3% 4rem 0;
  
    /* Padding oben/rechts/unten unverändert, links extra für Text */
    padding: 4rem 1rem 4rem 3rem;
  
    background: linear-gradient(135deg, #e3f2fd 0%, #666 100%);
    margin-left: 5%;
  
    /* linke Ecken moderat, rechte Ecken sehr groß = Halbkreis */
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
  }
  
  /* die Pseudo-Elemente bleiben unverändert */
  .template-info::before,
  .template-info::after { /* … unverändert … */ }
  
  /* Innen-Container und Typo bleiben unverändert */
  .template-info__inner { /* … unverändert … */ }
  .template-info__title,
  .template-info__lead,
  .template-info__cta { /* … unverändert … */ }
  
  /* Feature-Liste unverändert */
  .template-info__features { /* … unverändert … */ }
  .template-info__features li::before { /* … unverändert … */ }
  
  /* ---- Centered Info Box ---- */
.centered-info {
    position: relative;
    overflow: hidden;
    margin: 4rem auto;               /* zentriert mit Abstand oben/unten */
    padding: 3rem 2rem;              /* rundum Padding */
    max-width: 800px;                /* begrenzt die Breite */
    border-radius: 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #666 100%);
  }
  
  /* weiche Lichtspots wie bei .template-info */
  .centered-info::before,
  .centered-info::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
  }
  .centered-info::before {
    width: 200px; height: 200px;
    top: -60px; left: -60px;
    background: rgba(255, 255, 255, 0.6);
  }
  .centered-info::after {
    width: 300px; height: 300px;
    bottom: -80px; right: -80px;
    background: rgba(255, 255, 255, 0.5);
  }
  
  /* innerer Container über den Pseudo-Elementen */
  .centered-info__inner {
    position: relative;
    text-align: center;
  }
  
  /* Titel */
  .centered-info__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #666;
  }
  
  /* Textbereich */
  .centered-info__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
  }
  
 /* ---- Hinweis: Weitere Templates in Arbeit ---- */
.templates-coming-soon {
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    max-width: 700px;
    text-align: center;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }
  
  /* sanfte Lichtkreise für Tiefe */
  .templates-coming-soon::before,
  .templates-coming-soon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
  }
  .templates-coming-soon::before {
    width: 250px;
    height: 250px;
    top: -60px;
    left: -60px;
    background: rgba(255, 255, 255, 0.7);
  }
  .templates-coming-soon::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    background: rgba(255, 255, 255, 0.6);
  }
  
  .templates-coming-soon__inner {
    position: relative;
    z-index: 1;
  }
  
  .templates-coming-soon__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #e65100;
  }
  
  .templates-coming-soon__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #bf360c;
  }
  
  /* Parallax-Section */
.parallax-section {
    position: relative;
    background-image: url('/images/elegant-banner.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 500px;           /* Höhe nach Wunsch anpassen */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .parallax-section {
  /* Volle Viewport-Breite */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  /* Hintergrund */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

  
  /* Optional: leichter Farb-Overlay für bessere Lesbarkeit */
  .parallax-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
  }
  
  /* Content zentrieren */
  .parallax-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0 1rem;
  }
  
  .parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .parallax-content p {
    font-size: 1.25rem;
  }
  
  /* Feature-Section: Text links, rundes Bild rechts */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;       /* Für mobile Devices */
    padding: 4rem 1rem;
    gap: 2rem;
  }
  
  .feature-text {
    flex: 1 1 300px;       /* wächst, bis Textblock gedrückt wird */
    max-width: 600px;
  }
  
  .feature-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-text p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .feature-image {
    flex: 0 0 200px;       /* feste Größe für das runde Bild */
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;    /* rund */
  }
  
  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Bild skaliert und bleibt zentriert */
    display: block;
  }
  
  /* Mobile-Fallback: Bild über Text */
  @media (max-width: 768px) {
    .feature-section {
      flex-direction: column-reverse;
      text-align: center;
    }
    .feature-image {
      margin-bottom: 1.5rem;
    }
  }

  #responsive-design {
    padding: 3rem 1.5rem;
    background-color: #f7fafc; /* dezentes Grau für Corporate-Feel */
  }
  #responsive-design .container {
    margin: 0 auto;
    max-width: 48rem; /* ~768px */
  }

  /* Headline & Text */
  #responsive-design h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c; /* dunkles Anthrazit */
  }
  #responsive-design p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #2d3748; /* etwas weicheres Anthrazit */
  }

  /* Liste */
  #responsive-design ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  #responsive-design ul li + li {
    margin-top: 0.5rem;
  }
  #responsive-design strong {
    font-weight: 600;
  }

  /* Fazit */
  #responsive-design em {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #4a5568;
  }

  /* Responsive Feinschliff */
  @media (min-width: 640px) {
    #responsive-design {
      padding: 4rem 2rem;
    }
  }
  @media (min-width: 1024px) {
    #responsive-design {
      padding: 5rem 3rem;
    }
  }
  
  .News{
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
  }