/* =========================
   ABOUT ME SECTION
   ========================= */

.about-me-section {
    margin-top: 7rem;
    padding: 2rem 1rem;
    background: #d6dbd2;
    overflow: hidden; /* for animations */
}

/* =========================
   CONTAINER
   ========================= */

.about-me-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;

    background: #e4e8e1;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   MAIN GRID
   ========================= */

.about-me-main {
    display: grid;
    grid-template-columns: minmax(0, 320px) 1fr;
    gap: 3rem;
}

/* =========================
   LEFT COLUMN
   ========================= */

.about-me-left {
    text-align: center;
}

.about-me-image {
    width: 240px;
    height: 240px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;

    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transform: rotate(-10deg);
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-me-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2a1f;
    margin-bottom: 0.3rem;
}

.about-me-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4f5f4f;
    letter-spacing: 0.5px;
    text-align: center;
}

/* =========================
   RIGHT COLUMN
   ========================= */

.about-me-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-me-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1f2a1f;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.about-me-text {
    font-size: 1rem;
    color: #2f3a2f;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.about-me-text strong,
.about-me-intro strong {
    color: #0f1a0f;
    font-weight: 700;
}

/* =========================
   SOCIALS & EASTER
   ========================= */

.about-me-socials,
.about-me-easter {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
}

.about-me-easter {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(31, 42, 31, 0.15);
    letter-spacing: 2px;
    font-family: monospace;
    text-align: center;
}

/* =========================
   MOBILE FIXES
   ========================= */

@media (max-width: 900px) {

    .about-me-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-me-left,
    .about-me-right {
        text-align: center;
        align-items: center;
    }

    .about-me-image {
        width: 200px;
        height: 200px;
        transform: rotate(0deg);
    }

    .about-me-intro {
        font-size: 1.15rem;
    }

    .about-me-text {
        font-size: 0.95rem;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */

@media (max-width: 420px) {

    .about-me-container {
        padding: 1.5rem 1rem;
    }

    .about-me-image {
        width: 180px;
        height: 180px;
    }
}
