/* 🌍 전체 페이지 스타일 */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 제목 스타일 */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #003366;
}

/* 📌 About Me 컨테이너 (사진 + 약력) */
.about-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    flex-wrap: wrap; /* 작은 화면에서 자동 줄바꿈 */
}

/* 🔹 프로필 사진 스타일 */
.profile-img {
    width: 200px; /* 기본 크기 */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* 📝 약력 (Bio) */
.bio-info {
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.bio-info h3 {
    margin: 10px 0;
    font-size: 28px;
    color: #003366;
}

.bio-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #444;
}

/* 🎓 학력 리스트 스타일 */
.bio-info h4 {
    font-size: 20px;
    color: #003366;
    margin-top: 12px;
    margin-bottom: 5px;
}

.bio-info ul {
    padding-left: 15px;
    margin: 5px 0;
    list-style: none;
}

.bio-info li {
    font-size: 14px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.bio-info li::before {
    content: "🎓";
    margin-right: 6px;
}

/* 📖 소개 섹션 */
.about-description {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* 📌 네비게이션 바 스타일 */
.navbar {
    background: #003366;
    font-size: 18px;
    padding: 10px;
    max-width: 1100px;
    margin: 20px auto;
    border-radius: 10px; /* 둥근 네비바 */
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
}

.navbar a:hover {
    background: #00509E;
    border-radius: 5px;
}

/* 📌 전체 컨텐츠 스타일 */
.container {
    max-width: 1100px;
    width: 90%;
    margin: 40px auto;
    text-align: left;
}

/* 섹션 제목 */
.container h2 {
    border-bottom: 2px solid #003366;
    padding-bottom: 6px;
    font-size: 26px;
}

/* 논문 스타일 */
.container h3 {
    margin-top: 10px;
    color: #003366;
}

/* 📨 Contact 섹션 스타일 */
.contact-card {
    background: #f9f9f9;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.contact-card img {
    width: 18px;
    height: 18px;
}

.contact-card p {
    font-size: 14px;
    margin: 0;
}

/* 🔗 링크 스타일 */
.contact-card a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* 📝 Publications 스타일 */
#publications {
    margin-top: 40px;
}

/* 논문 카드 스타일 */
.paper-card {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.paper-card h3 {
    color: #003366;
    margin-bottom: 10px;
}

.paper-card p {
    font-size: 14px;
    color: #444;
    margin: 5px 0;
}

.paper-card a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.paper-card a:hover {
    text-decoration: underline;
}

/* 📱 반응형 디자인 (모바일 최적화) */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .bio-info {
        text-align: center;
    }

    .container {
        width: 95%;
    }

    .navbar {
        flex-direction: column;
        gap: 5px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}
