/* 1. Grundkonfiguration */
body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    color: #000000;
    line-height: 1.7;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

/* 2. Header & Navigation */
header {
    padding: 15px 5%;
    background: #ffffff;
    border-bottom: 1px solid #000000; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000000;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* 3. Block-System */
.block-white { padding: 80px 10%; background-color: #ffffff; }
.block-grey { padding: 80px 10%; background-color: #f2f2f2; }

/* 4. Überschriften */
h1, h2, h3, .section-title, .footer-content h3 {
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
}

h1.main-title { 
    font-size: 3rem; 
    margin: 10px 0; 
}

h2, .section-title { 
    font-size: 2.2rem; 
    margin-bottom: 50px; 
}

/* 5. Bilder-Styling */
.logo-img {
    display: block;
    margin: 0 auto 20px;
    height: 200px;
    width: auto;
}

.profil-img {
    width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Slogan: Umstellung auf GROSSBUCHSTABEN */
.slogan {
    text-transform: uppercase; /* Erzwingt Großbuchstaben */
    letter-spacing: 2px;       /* Gibt den Buchstaben mehr Raum */
    color: #000000;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
    font-weight: bold;
}

/* 6. Angebote-Grid & Cards */
.angebot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; 
}

.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: left;
}

/* 7. Über mich */
.about-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text { flex: 1; text-align: left; }
.about-text h2 { text-align: left; margin-bottom: 20px; }

/* 8. Footer / Kontakt */
#kontakt {
    text-align: center;
    border-top: 1px solid #000000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.footer-content p {
    margin: 5px 0;
    font-weight: bold;
    line-height: 1.2;
}

footer a {
    color: #000000;
}

.copyright {
    margin-top: 60px;
    font-size: 0.9rem;
    border-top: 1px solid #000000;
    padding-top: 20px;
    width: 100%;
}

/* 9. Mobile Anpassungen */
@media (max-width: 900px) {
    .angebot-grid { grid-template-columns: 1fr; }
    .about-flex-container { flex-direction: column; }
    .about-text h2 { text-align: center; }
}