/* About Section - Edge-to-edge 50/50 split */
.about-section {
    min-height: 100vh;
    padding: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: stretch;
    margin-top: clamp(6rem, 12vw, 10rem);
}

/* Container for photo + text */
.about-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Photo fills left half edge-to-edge */
.about-image {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.22),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

/* Text fills right half with its own padding */
.about-content {
    padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: clamp(0.2em, 1.5vw, 0.4em);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-section p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* About Resume Link - Rounded & Larger */
.about-resume-link {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;  /* Larger padding */
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);  /* Bigger text */
    font-weight: 400;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 0, 0, 0.3);  /* Faded border */
    border-radius: 50px;  /* Rounded */
    transition: all 0.3s ease;
    background: transparent;
}

.about-resume-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;  /* Solid border on hover */
    transform: translateY(-2px);
}

/* Mobile - Stack Vertically */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 60vw;
    }

    .about-content {
        text-align: center;
        padding: 3rem 2rem;
    }
}
