/* --- GRUND-LAYOUT & HINTERGRUND --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Hintergrundbild statt Farbe */
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Fallback, falls das Bild nicht lädt */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Abdunkelung des Hintergrundbildes für bessere Lesbarkeit */
    z-index: -1;
}

/* --- DIE VISITENKARTE --- */
.card {
    background: rgba(0, 0, 0, 0.7); /* Etwas dunkler für Kontrast zum Foto */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* --- LOGO BEREICH (wie im Bild) --- */
.logo-text {
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 
        -2px -2px 0 #4a2511,  
         2px -2px 0 #4a2511,
        -2px  2px 0 #4a2511,
         2px  2px 0 #4a2511,
         0px  6px 10px rgba(0,0,0,0.8);
}

.name-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* --- DIENSTLEISTUNGEN --- */
.services-container {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    padding: 12px 0;
    margin: 20px -30px;
}

.services-title {
    color: #d43b00;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.services-list {
    color: #4a2511;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 5px 0 0 0;
    letter-spacing: 2px;
}

/* --- KONTAKT & SOCIAL MEDIA --- */
.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-info i {
    color: #ffaa00;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffaa00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    background: #ffaa00;
    color: #1a0500;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 170, 0, 0.4);
}