﻿body {
    font-family: 'Noto Sans KR', sans-serif;
}

h1, h2 {
    color: #333;
}

footer {
    font-size: 14px;
}


#career ul {
    list-style-type: disc;
    padding-left: 20px;
}

#career .timeline h4 {
    color: #333;
}

#career p {
    font-size: 0.95rem;
}


.section-title {
    margin-top: 10px;
}

.profile-img {
    border-radius: 20%; /* 둥근 정도 조절 */
    border: 2px solid #007bff; /* 테두리 색상 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* 그림자 */
    width: 150px; /* 크기 */
    height: 150px;
    object-fit: cover; /* 이미지 비율 유지 */
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05); /* 살짝 확대 */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* 그림자 강조 */
}

.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-links {
    margin-top: 10px;
}

@media (max-width: 600px) {
    .footer p {
        font-size: 12px;
    }

    .footer .social-links {
        display: block;
        margin-top: 5px;
    }
}
.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

        .footer a:hover {
            text-decoration: underline;
        }

    .footer .social-links {
        margin-top: 10px;
    }

/* Top 버튼 스타일 */
#topBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    #topBtn:hover {
        background-color: #0056b3;
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }

    ul {
        list-style: none;
        text-align: center;
        padding: 0;
    }

    ul li::before {
        content: "• ";
        margin-right: 6px;
    }

.logo-img {
    max-width: 100%;
    max-height: 70px; /* 최대 높이 제한 */
    width: auto;
}

    .logo-img:hover {
        filter: grayscale(0%); /* 선택: 호버 시 또렷하게 */
        transform: scale(1.05);
    }

.logo-slider {
    max-width: 1000px; /* 전체 영역 폭 제한(선택) */
    margin: auto;
}
.carousel-item img {
    height: 80px;
    object-fit: contain;
}

.carousel-item .logo-img {
    margin: 0 15px; /* 로고 간격 조절 */
}

.logo-img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

@media (max-width: 576px) {
    #career .carousel-item .d-flex {
        flex-wrap: nowrap;
        justify-content: center;
    }

    #career .logo-img {
        width: 100%;
    }

    #career .carousel-item .logo-img:not(:first-child) {
        display: none; /* 모바일에서 첫 번째 이미지만 표시 */
    }
}