/* RESET & BASIS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #f0f2f5;
    color: #222;
    line-height: 1.6;
}

a {
    color: #1abc9c;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* HEADER + NAVIGATION */
header.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('bilder/banner.png') center center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

nav {
    background-color: #2c3e50;
}

    nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0;
        padding: 10px 0;
        list-style: none;
        justify-content: center;
    }

    nav li a {
        color: white;
        padding: 10px 15px;
        border-radius: 4px;
        transition: background 0.3s;
    }

        nav li a:hover,
        nav li a.active {
            background-color: #1abc9c;
        }

/* CONTAINER + INHALT */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

main {
    padding: 40px 0;
    font-size: 1.1rem;
}

    main h2 {
        margin-bottom: 20px;
        color: #2c3e50;
    }

ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

/* HIGHLIGHTS-Bereich */
.highlights {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

    .highlights .grid {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card h3 {
        color: #1abc9c;
        margin-bottom: 10px;
    }

/* CTA */
.cta {
    background-color: #1abc9c;
    color: white;
    padding: 90px 20px;
    text-align: center;
}

    .cta .btn {
        display: inline-block;
        background-color: white;
        color: #1abc9c;
        padding: 18px 32px;
        border-radius: 40px;
        font-size: 1.2rem;
        font-weight: bold;
        margin-top: 40px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

        .cta .btn:hover {
            background-color: #f2f2f2;
            color: #169d84;
            transform: translateY(-2px);
        }

/* FOOTER */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* BUTTONS */
.btn {
    background-color: #fff;
    color: #1abc9c;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

    .btn:hover {
        background-color: #f0f0f0;
    }

/* COOKIE-BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

    .cookie-banner p {
        flex: 1;
        margin: 0;
        font-size: 0.95rem;
    }

    .cookie-banner button {
        background-color: #1abc9c;
        border: none;
        padding: 10px 16px;
        color: white;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s ease-in-out;
    }

        .cookie-banner button:hover {
            background-color: #17a589;
        }

/* ANIMATIONEN */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    opacity: 0;
}

.fade-in-up {
    animation-name: fadeInUp;
}

body.loaded .animated {
    opacity: 1;
}

/* GOOGLE STERNE BOX */
.google-stars-fixed {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-right: 3px solid #1abc9c;
    padding: 16px;
    width: 200px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    z-index: 1000;
    text-align: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .google-stars-fixed .stars {
        font-size: 1.4rem;
        color: #fbbc04;
        margin: 6px 0;
    }

    .google-stars-fixed a {
        color: #1abc9c;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }

        .google-stars-fixed a:hover {
            text-decoration: underline;
        }

/* GALLERY */
.gallery {
    padding: 60px 20px;
    text-align: center;
}

    .gallery h2 {
        margin-bottom: 30px;
        color: #2c3e50;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

    .gallery-grid img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        object-fit: cover;
    }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

    /* GALLERY LIGHTBOX */
    .gallery-grid a {
        display: block;
        cursor: zoom-in;
    }

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
}

    .lightbox-overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE – MOBIL */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .highlights .grid {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

        .cookie-banner p {
            margin-bottom: 10px;
        }

    .google-stars-fixed {
        top: auto;
        bottom: 10px;
        left: 10px;
        transform: none;
        width: 160px;
        font-size: 0.8rem;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

        .google-stars-fixed .stars {
            font-size: 1.1rem;
        }

        .google-stars-fixed a {
            font-size: 0.75rem;
        }
}
