/* Allgemeine Stile für alle Seiten */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header-Stile */
header {
    background-color: #000000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 5px 5px #ff8c00;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 20px;
    padding-right: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #ff8c00;
}

nav ul li a.active {
    color: #ff8c00;
    font-weight: bolder;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-top: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff8c00;
    margin: 4px 0;
}

/* Footer-Stile */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px -5px 5px #ff8c00;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 35px;
    width: auto;
    max-width: 100%;
}

.footer-links p {
    margin: 0;
    text-align: center;
}

.footer-link {
    margin: 0;
    text-align: center;
    color: #ff8c00;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.2);
}

/* Gemeinsame Elemente */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-link h1 {
    margin: 0;
    color: #000;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-link:hover,
.footer-logo a:hover {
    opacity: 0.8;
}

.orange-link {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.orange-link:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.email-link {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}

/* Banner */
.banner {
    position: fixed;
    bottom: 20px;
    right: -300px;
    width: 250px;
    background-color: #262626;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    transition: right 0.5s ease-in-out;
    border: 1px solid #FFA500;
}

.banner.show {
    right: 20px;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #FFA500;
}

.close-btn:hover {
    color: #ff8c00;
}

#bible-verse {
    font-size: 16px;
    color: #e0e0e0;
    margin-top: 10px;
    line-height: 1.5;
}

/* Home-Sektion */
#home {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#home h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#home .intro-text,
#home .mission-text,
#home .cta-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: center;
}

#home .intro-text strong,
#home .mission-text strong,
#home .cta-text strong {
    color: #FFA500;
    font-weight: bold;
}

#home .cta-text {
    font-size: 1.3em;
    margin-top: 30px;
}

/* Andachten-Sektion */
#andachten {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#andachten h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#andachten .intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

#andachten .downloads {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

#andachten .downloads h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#andachten .download-info {
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

#andachten .download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#andachten .download-list li {
    margin-bottom: 15px;
}

#andachten .download-link {
    display: flex;
    align-items: center;
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#andachten .download-link:hover {
    background-color: #444;
}

#andachten .download-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.animated-icon {
    font-size: 3em;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Musik-Sektion */
#musik {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#musik h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#musik .intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

#musik .music-item {
    margin-bottom: 40px;
}

#musik .music-item h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#musik .music-item p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

#musik .music-item iframe {
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/* Projekte-Sektion */
#das-event {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#das-event h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#das-event .intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

#das-event h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#das-event p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

#das-event .event-infos {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

#das-event .event-infos h3 {
    color: #FFA500;
    font-size: 1.5em;
    margin-bottom: 15px;
}

#das-event .event-infos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#das-event .event-infos ul li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 10px;
}

#das-event .event-infos ul li strong {
    color: #FFA500;
}

#das-event .cta-text {
    font-size: 1.3em;
    text-align: center;
    color: #FFA500;
    font-weight: bold;
    margin-top: 20px;
}

.cta-link {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFA500;
    color: #000;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
}

.cta-button:hover {
    background-color: #ff8c00;
    transform: scale(1.05);
}

.sticker-section {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.sticker-section h2 {
    color: #FFA500;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
}

.sticker-intro {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.sticker-intro span {
    color: #FFA500;
}

.why-stickers {
    margin-bottom: 20px;
}

.why-stickers h3 {
    color: #FFA500;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.why-stickers ul {
    list-style: none;
    padding: 0;
}

.why-stickers ul li {
    background-color: #FFA500;
    color: #000;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.sticker-order {
    text-align: center;
    margin-bottom: 20px;
}

.sticker-order h3 {
    color: #FFA500;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.share-story {
    text-align: center;
}

.share-story h3 {
    color: #FFA500;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.Sticker {
    height: 150px;
    margin-right: 15px;
}

/* Leistungen-Sektion */
#leistungen {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#leistungen h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#leistungen .intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

.leistungen-liste {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.leistung {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.leistung h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.leistung p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.produkt {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
}

.produkt-bild {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.produkt h3 {
    color: #FFA500;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.produkt-beschreibung {
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.produkt-preis {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-button {
    padding: 10px 20px;
    background-color: #FFA500;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: #ff8c00;
}

.filter-button.active {
    background-color: #ff8c00;
}

.produkt-container {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1000px;
}

.produkt-vorderseite,
.produkt-rueckseite {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
}

.produkt-vorderseite {
    transform: rotateY(0deg);
}

.produkt-rueckseite {
    transform: rotateY(180deg);
}

.produkt-container:hover .produkt-vorderseite {
    transform: rotateY(180deg);
}

.produkt-container:hover .produkt-rueckseite {
    transform: rotateY(0deg);
}

/* Über uns-Sektion */
#ueber-uns {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#ueber-uns h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#ueber-uns .intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

/* Container für alle Teammitglieder – verwendet Flexbox für Layout */
.team-members {
    display: flex; /* Anordnung der Kinder in einer Zeile */
    justify-content: space-around; /* Gleichmäßiger Abstand zwischen den Elementen */
    flex-wrap: wrap; /* Zeilenumbruch, wenn der Platz nicht reicht */
    gap: 20px; /* Abstand zwischen den Flex-Items */
    margin-bottom: 40px; /* Abstand nach unten */
}

/* Einzelnes Teammitglied */
.team-member {
    background-color: #262626; /* Dunkler Hintergrund */
    padding: 20px; /* Innenabstand */
    border-radius: 10px; /* Abgerundete Ecken */
    text-align: center; /* Zentrierter Text */
    flex: 1 1 300px; /* Flexibles Verhalten: wächst und schrumpft, min. 300px */
    max-width: 400px; /* Maximalbreite für bessere Lesbarkeit */
}

/* Name oder Titel des Teammitglieds */
.team-member h3 {
    color: #FFA500; /* Orangefarbener Text */
    font-size: 1.8em; /* Etwas größer als normaler Text */
    margin-bottom: 15px; /* Abstand nach unten */
}

/* Beschreibungstext des Teammitglieds */
.team-member p {
    font-size: 1.1em; /* Etwas größere Schrift */
    line-height: 1.8; /* Zeilenhöhe für bessere Lesbarkeit */
    color: #e0e0e0; /* Heller Grauton für den Text */
}

/* Profilbild des Teammitglieds */
.member-image {
    width: 200px; /* Feste Breite */
    height: 200px; /* Feste Höhe */
    border-radius: 50%; /* Kreisform */
    margin-bottom: 15px; /* Abstand nach unten */
    object-fit: cover; /* Bild wird zugeschnitten, um den Rahmen auszufüllen */
    border: 3px solid #FFA500; /* Orangefarbener Rahmen */
}


.our-story {
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.our-story h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.gallery {
    text-align: center;
}

.gallery h3 {
    color: #FFA500;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Impressum-Sektion */
#impressum {
    background-color: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

#impressum h2 {
    color: #FFA500;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#impressum .gbr {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px;
}

#impressum .kursiv {
    font-style: italic;
}

#impressum p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
}

#impressum strong {
    color: #FFA500;
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: #262626;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
        padding-bottom: 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo-title {
        margin-bottom: 10px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-right: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000;
        border: 10px solid #000000;
        border-radius: 10px;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    footer {
        position: static;
        padding: 5px 0;
        box-shadow: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo img {
        height: 25px;
    }
    
    .footer-social img {
        height: 18px;
    }

    /* Responsive Anpassungen für alle Sektionen */
    #home h2,
    #andachten h2,
    #musik h2,
    #das-event h2,
    #leistungen h2,
    #ueber-uns h2,
    #impressum h2 {
        font-size: 2.2em;
    }

    #home .intro-text,
    #home .mission-text,
    #home .cta-text,
    #andachten .intro-text,
    #musik .intro-text,
    #das-event .intro-text,
    #leistungen .intro-text,
    #ueber-uns .intro-text {
        font-size: 1em;
        text-align: left;
    }

    #home .cta-text,
    #das-event .cta-text {
        font-size: 1.1em;
    }

    /*.team-members,
    .gallery-images {
        flex-direction: column;
        align-items: center;
    }

    .team-member,
    .leistung,
    .produkt {
        max-width: 100%;
    }*/

    #musik .music-item iframe {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 24px;
        margin: 5px;
    }

    .sticker-section h2,
    .why-stickers h3,
    .sticker-order h3,
    .share-story h3 {
        font-size: 1.3em;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }
}

/* Farbdefinitionen */
.farbe_weiß {
    color: #ffffff;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 0;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #262626; /* Hellerer Hintergrund */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        border-top: 2px solid #ff8c00;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        color: #ffffff;
        padding: 10px 15px;
        display: block;
        width: 100%;
        text-align: center;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background-color: #ff8c00;
        color: #000;
        text-decoration: none;
        border-radius: 5px;
    }
}

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/*.container {
    width: 95%;
    padding: 15px;
}*/

/* Bessere Skalierung für Überschriften */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

header {
    padding: 15px 0;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    gap: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .logo {
        height: 35px;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav ul.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
}

.section {
    padding: 40px 0;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 0;
        margin-top: 50px;
    }
    
    .intro-text, .mission-text, .cta-text {
        font-size: 1rem;
        text-align: left;
    }
}

footer {
    position: relative;
    padding: 20px 0;
}

.footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-social {
    justify-content: center;
}

@media (max-width: 768px) {
    footer {
        padding: 15px 0;
    }
    
    .footer-logo img {
        height: 30px;
    }
    
    .footer-social img {
        height: 20px;
    }
}
.banner {
    width: 90%;
    max-width: 300px;
    right: -100%;
    bottom: 10px;
}

.banner.show {
    right: 10px;
}

@media (max-width: 480px) {
    .banner {
        width: 85%;
        padding: 10px;
    }
}
iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    iframe {
        height: 200px;
    }
}



/*.leistung, .produkt {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
}*/

.produkt-container {
    height: auto;
    perspective: none;
}

.produkt-vorderseite, .produkt-rueckseite {
    position: relative;
    transform: none;
    backface-visibility: visible;
}

.produkt-container:hover .produkt-vorderseite,
.produkt-container:hover .produkt-rueckseite {
    transform: none;
}
/*.team-member {
    flex: 1 1 100%;
    max-width: 100%;
}*/

.member-image {
    width: 150px;
    height: 150px;
}
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
}
img {
    max-width: 100%;
    height: auto;
}
.cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    margin: 5px;
    display: inline-block;
    width: auto;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin: 5px 0;
    }
}
.leistungen-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* kleinere Breite */
    gap: 16px;
    margin-top: 30px;
    padding: 0;
}

.leistung, .produkt {
    /*background-color: #fff;*/
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.leistung:hover, .produkt:hover {
    transform: scale(1.01);
}

.leistung h3, .produkt h3 {
    font-size: 1.05rem;
    margin: 8px 0;
}

.produkt-bilder {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.produkt-bild {
    max-width: 80px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #f06449;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    margin: 4px 2px 0 0;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #d65035;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-button {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: none;
    background-color: #eee;
    cursor: pointer;
}

.filter-button.active, .filter-button:hover {
    background-color: #ccc;
}

@media (max-width: 600px) {
    .leistungen-liste {
        grid-template-columns: 1fr;
    }
    .produkt-bilder {
        flex-direction: column;
        align-items: center;
    }
}
 .email-address{
    color: #ff8c00;
 }












