/* ===== About / Who Am I Section ===== */
.about {
    background: #111111;
    padding: 100px 40px 80px;
    position: relative;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Heading */
.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.heading-accent {
    color: #f59e0b;
}

/* Layout - images on sides, text in center */
.about-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

/* Small floating images */
.about-float-img {
    width: 130px;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-float-img:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
}

/* Left image - largest, tilted */
.about-img-left {
    width: 150px;
    height: 200px;
    transform: rotate(-8deg);
    margin-top: 20px;
}

.about-img-left:hover {
    transform: rotate(-3deg) translateY(-5px);
}

/* Right images stacked */
.about-float-imgs-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.about-img-right-1 {
    width: 110px;
    height: 140px;
    transform: rotate(6deg);
}

.about-img-right-1:hover {
    transform: rotate(2deg) translateY(-5px);
}

.about-img-right-2 {
    width: 80px;
    height: 100px;
    transform: rotate(-4deg) translateX(15px);
}

.about-img-right-2:hover {
    transform: rotate(-1deg) translateX(15px) translateY(-5px);
}

/* Text */
.about-text {
    max-width: 480px;
    text-align: left;
}

.about-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    background: #f59e0b;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.about-btn svg {
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        padding: 80px 20px 60px;
    }

    .about-layout {
        flex-direction: column;
        gap: 30px;
    }

    .about-float-img {
        width: 110px;
        height: 150px;
    }

    .about-float-imgs-right {
        flex-direction: row;
        gap: 12px;
    }

    .about-img-right-1 {
        width: 90px;
        height: 115px;
    }

    .about-img-right-2 {
        width: 65px;
        height: 80px;
        transform: rotate(-4deg) translateX(0);
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .about-btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
}
