/* Generelle Einstellungen & Schriftart */
:root {
    --primary-color: #0071e3;
    --dark-color: #1d1d1f;
    --light-color: #f5f5f7;
    --text-color: #333;
    --text-light: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--dark-color);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Header & Navigation */
.header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.hero .subtitle {
    max-width: 700px;
    margin: 20px auto 30px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0077ed;
}

/* Services & Packages Section */
.services, .packages {
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Pricing Details */
.pricing-details {
    background-color: var(--light-color);
    padding: 60px 0;
}

.pricing-details h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.pricing-details ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-details li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.contact-info .name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
}

.contact-info .phone, .contact-info .hours {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 10px 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Stil für Impressum & Datenschutz Seite */
.content-page {
    padding: 60px 20px;
    max-width: 800px;
}
.content-page h1, .content-page h2, .content-page h3 {
    text-align: left;
}


/* ============================================= */
/* Verbesserte Stile für Kontaktformular     */
/* ============================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Feldern */
    max-width: 700px; /* Macht das Formular nicht zu breit */
    margin: 40px auto 0; /* Zentriert das Formular mit Abstand nach oben */
}

.form-group {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-family: 'Poppins', sans-serif; /* Gleiche Schriftart wie der Rest der Seite */
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px; /* Modernere, abgerundete Ecken */
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; /* Entfernt den Standard-Rahmen beim Anklicken */
    border-color: var(--primary-color); /* Hebt den Rahmen in deiner Hauptfarbe hervor */
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15); /* Fügt einen dezenten "Glow"-Effekt hinzu */
}

.contact-form .cta-button {
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================= */
/* Mobile Optimierung                        */
/* ============================================= */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .navbar { flex-direction: column; gap: 15px; }
    
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero, .services, .packages, .contact, .pricing-details {
        padding: 60px 0;
    }
    
    .form-group {
        flex-direction: column;
    }

    /* Stile für die neuen Telefon- & WhatsApp-Links */
.contact-info .phone {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 10px 0;
    line-height: 1.8; /* Erhöht den Zeilenabstand für bessere Lesbarkeit */
}

.contact-info .phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info .phone a:hover {
    text-decoration: underline;
}

    /* ============================================= */
/* Stile für Über-Mich Sektion               */
/* ============================================= */
.about-me {
    padding: 80px 0;
    background-color: #ffffff; /* Weißer Hintergrund */
}

.about-me-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-me-image {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Macht das Bild rund */
    background-color: var(--light-color); /* Platzhalter-Farbe */
    flex-shrink: 0;
    /* Später, wenn du ein Bild hast, nutzt du: background-image: url('pfad/zu/deinem/bild.jpg'); */
    background-size: cover;
    background-position: center;
}

.about-me-text h2 {
    text-align: left;
    margin-top: 0;
}

.about-me-text p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400; /* Etwas dickerer Text als Standard-p für bessere Lesbarkeit */
}

/* Anpassung für die Mobile Optimierung */
@media (max-width: 768px) {
    .about-me-container {
        flex-direction: column; /* Bild und Text untereinander auf Mobilgeräten */
    }
    .about-me-image {
        width: 200px; /* Bild etwas kleiner auf Mobilgeräten */
        height: 200px;
        margin-bottom: 30px;
    }
    .about-me-text h2 {
        text-align: center; /* Überschrift zentriert auf Mobilgeräten */
    }
}
}
