/* -------------------------------------------------
   1. GLOBAL RESET & BASICS
------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}



/* -------------------------------------------------
   2. NAVIGATION
------------------------------------------------- */

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #000;
    position: relative;
    overflow: visible;
}

.logo img {
    display: block;
    height: 260px;
    width: auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.35);
    z-index: 9999;
}

.nav-links {
    font-size: 16px;
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}



/* -------------------------------------------------
   3. HERO / HEADER
------------------------------------------------- */

.hero {
    height: 90vh;
    background: url('picture/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 700px;
    backdrop-filter: blur(4px);
}


/* WICHTIG: Hero nicht komplett weiß färben → Text bleibt steuerbar */
.hero * {
    color: inherit;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    z-index: 2;
}

.hero h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 12px;
    margin-bottom: 20px;
    color: #111;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #b54ea3;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #792a72;
}



/* -------------------------------------------------
   4. SECTION BASICS
------------------------------------------------- */

.section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section h2 {
    margin-bottom: 30px;
    font-size: 2.3em;
}

.section.dark {
    background: #1a1a1a;
    color: #eee;
}



/* -------------------------------------------------
   5. ABOUT
------------------------------------------------- */

.about-img {
    width: 100%;
    max-width: 800px;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
}



/* -------------------------------------------------
   6. GALLERY
------------------------------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px; /* gewünschte einheitliche Höhe */
    object-fit: cover;
    border-radius: 12px;
}


/* -------------------------------------------------
   7. CARDS (LEISTUNGEN)
------------------------------------------------- */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #222;
    padding: 20px;
    border-radius: 6px;
}



/* -------------------------------------------------
   8. EQUIPMENT
------------------------------------------------- */

.equipment-list {
    list-style: none;
    font-size: 20px;
    line-height: 2;
}



/* -------------------------------------------------
   9. FAQ
------------------------------------------------- */

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #b54ea3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #1a1a1a;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}



/* -------------------------------------------------
   10. CONTACT FORM
------------------------------------------------- */

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
}

button {
    padding: 12px;
    background: #b54ea3;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #792a72;
}

.contact-info a {
    color: #ff005e;
    text-decoration: none;
}

/* -------------------------------------------------
   11. Reviews
------------------------------------------------- */

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
    color: #333;
}

.review-card h4 {
    margin: 0 0 10px;
}

.stars {
    color: #f4c150;
    margin-bottom: 8px;
}

.review-card small {
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.swiper {
    padding: 30px 0 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: #fff;
}



/* responsive */
@media(max-width: 600px){
    .hero {
        height: auto;
        padding: 90px 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 15px;
    }
    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 18px;
        font-size: 15px;
    }
    .reviews {
        gap: 15px;
    }
    .review {
        padding: 15px;
    }
   .about-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-text h3 {
        font-size: 18px;
        line-height: 1.4;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
}




/* -------------------------------------------------
   12. FOOTER
------------------------------------------------- */

footer {
    background: #000;
    color: #ccc;
    padding: 30px 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-logo img {
    height: 100px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.footer-address,
.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b54ea3;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #888;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    color: #b54ea3;
    font-size: 28px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #792a72;
}
