/* ========================================= */
/* ====== MODERN ABOUT ME SECTION ========= */
/* ========================================= */

#about_me {
    padding: 12rem 4% 10rem;
    background: var(--bg-color); 
    overflow: hidden; 
}

.about_me-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    gap: 8rem; 
}

/* --- LINKER BEREICH: BILD (Original Style restored) --- */
.about_me-image-wrapper {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dein Original-Container für das Bild */
.about_me-img {
    position: relative;
    width: 30rem;
    height: 30rem;
    border-radius: 50%; /* Perfekter Kreis */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Das Bild selbst */
.about_me-img img {
    width: 90%;
    height: 90%; /* Damit es rund bleibt */
    border-radius: 50%;
    border: .2rem solid var(--text-color);
    object-fit: cover;
    z-index: 10; /* Über dem Spinner-Rahmen, falls nötig */
}

/* Der drehende Kreis (Spinner) */
.about_me-img .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    
    /* Die Farben für den Spinner */
    border-top: .2rem solid transparent; /* Transparent damit es sich drehend aussieht */
    border-bottom: .2rem solid transparent;
    border-left: .2rem solid var(--text-color);
    border-right: .2rem solid var(--text-color);
    
    /* Animation */
    /*animation: aboutSpinner 8s linear infinite; */ 
    /* animation-play-state: paused; */ /* Optional: Wenn er immer drehen soll, diese Zeile löschen */
}

/* --- RECHTER BEREICH: TEXT (Modern Style) --- */
.about_me-content {
    flex: 1.5; 
}

.about_me-content h3 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.about_me-content h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color); 
    margin-bottom: 3rem;
    display: inline-block;
    position: relative;
}
.about_me-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
}

.lead-text {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.about_me-content p {
    font-size: 1.8rem;
    line-height: 1.8; 
    color: var(--text-color); 
    margin-bottom: 2rem;
}

.about_me-content .btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-color);
    color: var(--bg-color);
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-top: 2rem;
}

.about_me-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--text-color);
}


/* ========================================= */
/* ====== RESPONSIVE DESIGN (Handy/Tablet) = */
/* ========================================= */

@media (max-width: 991px) {
    #about_me {
        padding: 8rem 4%;
    }

    .about_me-container {
        flex-direction: column; 
        gap: 5rem;
        text-align: center;
    }

    /* Bild auf Mobile etwas kleiner */
    .about_me-img {
        width: 25rem;
        height: 25rem;
    }

    /* Text auf Mobile zentrieren */
    .about_me-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about_me-content h3 {
        font-size: 3.2rem;
    }

    .about_me-content h4 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    .about_me-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .lead-text {
        font-size: 1.8rem;
    }

    .about_me-content p {
        font-size: 1.5rem;
    }
}