/* ========= ABOUT PAGE MAIN SECTION ========= */

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 72vh;
    max-width: 1000px;
    margin: 30px auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(187,241,196,0.3) 0%, rgba(244,208,213,0.3) 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    z-index: 0;
    animation: rotate 22s linear infinite;
}

.about-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.about-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 35px rgba(119,221,118,0.3);
    background: white;
    margin-right: 35px;
    margin-bottom: 15px;
    transition: all 0.35s;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.about-photo:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 15px 50px rgba(244,154,194,0.5);
    border-color: rgba(244,181,199,0.9);
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #77DD76 0%, #F49AC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 550px;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.about-contentt {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-box {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(119,221,118,0.16);
    padding: 34px 28px;
    min-width: 270px;
    max-width: 340px;
    flex: 1 0 270px;
    animation: fadeInUp 0.8s ease-out 0.35s backwards;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #F49AC2;
    margin-bottom: 7px;
    letter-spacing: 0.6px;
    animation: fadeInUp 0.8s ease-out 0.42s backwards;
}

.about-box ul {
    list-style: disc inside;
    font-size: 16px;
    color: #555;
    padding-left: 0;
    margin: 0;
}

.about-box li {
    margin-bottom: 6px;
}

.about-box p {
    font-size: 17px;
    color: #718096;
    line-height: 1.7;
}

.mt-4 {
    margin-top: 14px;
}

footer {
    text-align: center;
    color: #90A4AE;
    font-size: 15px;
    margin: 35px auto 15px auto;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from { opacity:0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rotate {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}

/* ============= RESPONSIVE DESIGN ============= */

@media screen and (max-width: 890px) {
    .about-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .about-contentt {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .about-box {
        max-width: 95vw;
        min-width: 220px;
    }
    .about-section {
        padding: 40px 14px;
    }
}

@media screen and (max-width: 500px) {
    .about-section {
        padding: 20px 6px;
        border-radius: 14px;
    }
    .about-photo {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
        border-width: 4px;
    }
    .about-intro h2 {
        font-size: 22px;
        margin-bottom: 9px;
    }
    .about-box {
        padding: 16px 9px;
        border-radius: 12px;
    }
    .about-box h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .about-box p, .about-intro p {
        font-size: 14px;
    }
}
