/* about-me.css */

:root {
    --bg-color: #EAF5F7;
    --text-color: #2D3748;
    --accent-lilac: #D7C5DD;
    --accent-mint: #B6DED3;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* --- ABOUT ME SECTION --- */

.about-me {
    padding: 60px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-visual {
    position: relative;
    flex: 0 0 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar {
    width: 85%;
    height: auto;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-lilac);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: blob-morph 10s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes blob-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }
    33% {
        border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
        transform: scale(1.05) rotate(5deg);
    }
    66% {
        border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%;
        transform: scale(0.95) rotate(-5deg);
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #1A202C;
}

.bio {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #4A5568;
    max-width: 550px;
    font-weight: 500;
}

.skills {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.skill-badge {
    background-color: white;
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.skill-badge:hover {
    transform: translateY(-2px);
    background-color: var(--accent-mint);
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1A202C;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(26, 32, 44, 0.15);
}

.github-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(26, 32, 44, 0.25);
    background-color: #000;
}

.github-btn i {
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .about-text h1 {
        font-size: 2.8rem;
    }
    
    .skills {
        justify-content: center;
    }

    .bio {
        margin-left: auto;
        margin-right: auto;
    }

    .about-visual {
        flex: 0 0 300px;
        height: 300px;
    }
}
