body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(to bottom, #fff1f5, #ffffff);
    color: #444;
}

/* Header */
header {
    background: linear-gradient(to bottom, #f7b6c8, #f9c8d6);
    padding: 40px 20px 30px;
    text-align: center;
}

/* Logo Box */
.logo-box {
    background: linear-gradient(to bottom, #ffffff, #fff5f8);
    padding: 20px 25px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border: 2px solid #f7b6c8;
}

.logo-box img {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Titel */
header h1 {
    margin: 10px 0 0;
    color: white;
}

header p {
    margin: 5px 0 0;
    color: white;
    font-size: 18px;
}

/* Navigation */
nav {
    background: #ffe0e8;
    padding: 12px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
}

nav a:hover {
    color: #f07fa0;
}

/* Inhalt */
section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

h2 {
    color: #f07fa0;
}

.box {
    background: #fff5f8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Footer */
footer {
    background: #f7b6c8;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
/* Galerie */

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.galerie img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.galerie img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Großansicht */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
/* Handy-Optimierung */

@media (max-width: 700px) {

    header {
        padding: 25px 10px;
    }

    header h1 {
        font-size: 24px;
    }

    header p {
        font-size: 16px;
    }

    nav a {
        display: block;
        margin: 8px 0;
    }

    section {
        padding: 20px 15px;
        margin: 20px 10px;
    }

    .logo-box img {
        max-width: 160px;
    }

}

/* WhatsApp Button nur für Handy */

.whatsapp-btn {
    display: none;
}

@media screen and (max-width: 900px) {

    .whatsapp-btn {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25D366;
        color: white;
        padding: 14px 18px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 99999;
        align-items: center;
        gap: 8px;
        
        animation: whatsapp-pulse 2s infinite;


    }
}

/* WhatsApp Pulsieren */

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}








/* Hamburger Menü */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

/* Mobile */

@media (max-width: 800px) {

    nav {
        display: flex;
        flex-direction: column;
        background: #ffdbe3;

        /* Animation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav a {
        padding: 12px;
        border-top: 1px solid #f7b6c8;
    }

    nav.show {
        max-height: 500px; /* genug Platz für Links */
    }

    .menu-toggle {
        display: block;
        text-align: center;
        background: #f4b6c2;
        color: white;
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
    }
}

/* Telefon: nur auf Handy klickbar */

.phone-mobile {
    display: none;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.phone-desktop {
    display: inline;
}

/* Auf Handy umschalten */

@media (max-width: 800px) {

    .phone-mobile {
        display: inline;
    }

    .phone-desktop {
        display: none;
    }
}


