/* static/css/about.css */

/* 전체 컨테이너 폰트 */
.about-container {
    font-family: 'Gowun Dodum', sans-serif;
    color: #444;
}

/* 1. Hero Section */
.hero-section {
    padding: 60px 0 10px;
}
.hero-section .divider {
    width: 50px;
    height: 3px;
    background-color: #b3a59d;
}

/* 2. Profile Section */
.profile-img-wrapper {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid #fff;
    background-color: #fff;

}
.profile-img-wrapper img {
    transition: transform 0.5s ease;
    display: block; /* 이미지 하단 여백 제거 */
}
.profile-img-wrapper:hover img {
    transform: scale(1.05);
}

/* 3. Expertise Card (수정됨) */
.expertise-section {
    background-color: #95a0a7;
}

.expertise-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #676767; /* [변경] 요청하신 어두운 회색 배경 */
    color: #fff; /* [변경] 기본 글자색 흰색 */
    border: none; /* 기존 테두리 제거 */
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important; /* 그림자 약간 진하게 */
}

.expertise-card .icon-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* [변경] 아이콘 흰색 */
}

.expertise-card h5.fw-bold {
    color: #fff; /* [변경] 제목 흰색 */
}

.expertise-card .desc-text {
    color: #efe5dc;
    line-height: 1.6;
}

/* 4. Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translate3d(-40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translate3d(40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.fade-in-up { animation: fadeInUp 1s ease-out forwards; opacity: 0; }
.fade-in-left { animation: fadeInLeft 1s ease-out forwards; opacity: 0; }
.fade-in-right { animation: fadeInRight 1s ease-out forwards; opacity: 0; }