/* GRUND-DESIGN */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    /* Hintergrund mit lila Schleier und dem neuen Namen bg.jpg */
    background: linear-gradient(rgba(46, 0, 79, 0.7), rgba(46, 0, 79, 0.7)), url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #2e004f;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* HEADER */
header {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 10%;
}

h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }

/* BUTTONS */
.btn {
    display: inline-block;
    background: #a349a4;
    color: white !important;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 25px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

/* CONTAINER & KARTEN */
.container { padding: 60px 10%; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price { font-size: 2.5rem; font-weight: bold; margin: 20px 0; }
ul { list-style: none; padding: 0; text-align: left; }
li { margin-bottom: 10px; }
li::before { content: "✓ "; color: #a349a4; }

.badge {
    background: #a349a4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

/* KONTAKTFORMULAR */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    color: #333;
}

.contact-form h2 { text-align: center; color: #2e004f; margin-bottom: 20px; }

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 768px) {
    body {
        /* iPhone Fix: Hintergrund scrollt mit, damit er nicht zoomt */
        background-attachment: scroll !important;
    }
    h1 { font-size: 1.8rem; }
    header { min-height: auto; padding: 80px 5%; }
}

footer { text-align: center; padding: 40px; background: rgba(0, 0, 0, 0.5); font-size: 0.8rem; }