/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #3d2d1f;
    background-color: #faf8f5;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typografie */
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #c45e3f;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    color: #c45e3f;
    margin-bottom: 2rem;
}

p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #5a4a3a;
}

/* Hero-Bereich */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8dcc8;
    padding: 8rem 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle {
    max-width: 700px;
}

.button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #c45e3f;
    color: #faf8f5;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #a04f32;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.anders {
    background-color: #faf8f5;
}

.intro-text {
    max-width: 800px;
    margin-bottom: 4rem;
}

/* Punkte */
.points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.point {
    padding: 2rem;
    background-color: #e8dcc8;
    border-left: 4px solid #c45e3f;
}

.point p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    color: #3d2d1f;
}

/* Über mich */
.about {
    background-color: #f2ebe0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Kontakt */
.kontakt {
    padding: 6rem 0;
    background-color: #e8dcc8;
    text-align: center;
}

.kontakt h2 {
    margin-bottom: 2rem;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.kontakt-info a {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #c45e3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.kontakt-info a:hover {
    color: #a04f32;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .points {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        min-height: 100svh;
    }
}

@media (max-width: 480px) {
    h1 {
        margin-bottom: 1.5rem;
    }

    .subtitle {
        margin-bottom: 2rem;
    }

    .button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .point {
        padding: 1.5rem;
    }
}
