.about-me-image {
    display: flex;             /* enable flex alignment */
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center vertically */
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem auto;         /* center the circle on the page */
    overflow: hidden;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;  /* default smooth */
    /* optional for some browsers: */
    -webkit-backface-visibility: hidden;
}


.about-me-section {
    margin-top: 8rem;
    padding: 3rem 1rem;
    background: #d6dbd2; /* soft gray-green, not too dark */
}

.about-me-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 3rem;

    background: #e4e8e1;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LEFT COLUMN */

.about-me-left {
    text-align: center;
}

.about-me-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

/* RIGHT COLUMN */

.about-me-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-me-intro {
    font-size: 1.4rem;
    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 */

.about-me-socials {
    display: flex;
    justify-content: center; /* center horizontally */
    gap: 1rem;
    margin-top: 2rem;

    grid-column: 1 / -1; /* span full width of grid */
    align-self: end; /* optional: push it to the bottom of the container if needed */
}
.about-me-easter {
    display: flex;
    justify-content: center; /* center horizontally */

    grid-column: 1 / -1; /* span full width of grid */
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(31, 42, 31, 0.15); /* almost blends with background */
    letter-spacing: 2px;
    font-family: monospace; /* gives that “code-like” vibe */
}


/*.about-me-text:not(:last-of-type)::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin-top: 1rem;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0)
    );
}*/
/* RESPONSIVE */

@media (max-width: 900px) {
    .about-me-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-me-right {
        align-items: center;
    }

    .about-me-socials {
        justify-content: center;
    }
}
