/* ===== ÜBER MICH ===== */
:root {
    --primary-color: #7a5268;
}

main {
    background:
        linear-gradient(rgba(250, 245, 240, 0.97), rgba(250, 245, 240, 0.88)),
        url(/img/hintergrund1.jpg) center / cover fixed;
    padding: var(--spacing-section, 70px) 0;
    min-height: calc(100vh - 160px);
}

/* ---- Profilbereich ---- */
#about_me {
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 55px) clamp(20px, 3.5vw, 45px);
    background: var(--card-bg, #fffef9);
    border-radius: 30px;
    box-shadow: var(--shadow, 0 8px 28px rgba(90,50,40,0.09));
    border: 1px solid rgba(181, 112, 107, 0.1);
    position: relative;
    overflow: hidden;
}

/* Farbiger Balken oben */
#about_me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent, #b5706b), var(--primary-color, #7a5268));
}

#about_me h1 {
    text-align: center;
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 30px;
    color: var(--primary-color, #7a5268);
}

/* Profilbild zentriert */
#about_me .header_about {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

#about_me .header_about img {
    width: clamp(200px, 35vw, 350px);
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow, 0 8px 28px rgba(90,50,40,0.09));
    border: 6px solid var(--warm-cream, #f7ede6);
    outline: 2px solid rgba(181, 112, 107, 0.2);
    outline-offset: 4px;
    transition: var(--transition, all 0.3s ease);
}

#about_me .header_about img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover, 0 16px 40px rgba(90,50,40,0.14));
}

/* Biografie-Textbox */
#about_me .header2_about {
    background: linear-gradient(145deg, var(--accent-light, #faeae9), var(--bg-color, #faf5f0));
    border-radius: 20px;
    padding: clamp(22px, 3vw, 40px);
    border: 1px solid rgba(181, 112, 107, 0.12);
    box-shadow: inset 0 2px 10px rgba(90,50,40,0.03);
}

#about_me .header2_about span {
    color: var(--accent, #b5706b) !important;
}

#about_me p {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.85;
    color: var(--text-light, #7a6b68);
}

/* ===== DAS STUDIO ===== */
#studio {
    max-width: 1100px;
    margin: clamp(35px, 5vw, 65px) auto 0;
    padding: 0 clamp(15px, 3vw, 30px) clamp(30px, 5vw, 60px);
    text-align: center;
}

#studio h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    margin-bottom: 10px;
    color: var(--primary-color, #7a5268);
}

#studio h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent, #b5706b);
    margin: 10px auto 0;
    border-radius: 2px;
}

#studio .bilder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(15px, 2.5vw, 30px);
    margin-top: 28px;
}

#studio .bilder img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow, 0 8px 28px rgba(90,50,40,0.09));
    border: 6px solid var(--warm-cream, #f7ede6);
    transition: var(--transition, all 0.3s ease);
    object-fit: cover;
}

#studio .bilder img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover, 0 16px 40px rgba(90,50,40,0.14));
}

/* ===== TABLET (≤ 900px) ===== */
@media (max-width: 900px) {
    main {
        background-attachment: scroll;
    }

    #studio .bilder {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* ===== MOBILE (≤ 600px) ===== */
@media (max-width: 600px) {
    main {
        padding: 20px 12px;
    }

    #about_me {
        border-radius: 20px;
        padding: 25px 15px;
    }

    #about_me .header2_about {
        padding: 18px 15px;
        border-radius: 14px;
    }

    #studio .bilder {
        grid-template-columns: 1fr;
    }

    #studio .bilder img {
        border-radius: 18px;
        border-width: 4px;
    }
}