/* Minimalist About Section */
.about-section {
    background: #fff;
    padding: 6rem 0 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem; /* reduced from 4rem */
}

.about-text {
    flex: 1.2; /* slightly increase flex to give text more space */
    text-align: left;
    max-width: none;
    width: 100%;
    padding-right: 0;
    position: relative;
    left: 40px; /* aligns the text 3px to the right */
}

.about-text h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.about-photo {
    flex: 0.8; /* slightly decrease flex so photo takes less space */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-photo img {
    width: 340px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 2rem 0 2rem 0;
        min-height: unset;
        margin-top: 64px; /* add space for mobile header */
    }
    .about-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.2rem;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
    .about-photo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .about-photo img {
        width: 180px;
        height: 260px;
    }
    .about-text {
        position: static;
        left: 0;
        padding: 0;
        text-align: center;
        font-size: 1.08rem;
        line-height: 1.7;
        color: #444;
    }
    .about-text p {
        font-size: 1.08rem;
        padding: 0 0.5rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0.5rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .footer-contact {
        margin-bottom: 1rem;
    }
    .footer-social {
        margin-top: 0.5rem;
    }
    .social-link img {
        width: 32px;
        height: 32px;
        margin: 0 0.5rem;
    }
}