﻿.text-company-info-section {
    margin-top: -2%;
    max-width: 100%;
    color: Black;
    text-align: left; /* 텍스트 왼쪽 정렬 */
}

    .text-company-info-section h1 {
        left: 10%; /* 좌측 여백 */
        font-size: 3.0rem;
        font-weight: bold;
        margin-left: 1%;
        margin-bottom: 1%;
        line-height: 1.7;
        /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* 텍스트 그림자 추가 */ */
    }

    .text-company-info-section .highlight {
        color: red;
        font-size: 4.0rem;
        font-weight: bold;
    }


.container {
    margin-top: 5%;
    margin-left: 20%; /* 좌측 정렬 */
    display: flex;
    flex-direction: row; /* PC에서는 가로 배치 */
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.left-section {
    width: 50%;
}
    .left-section h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
    }

    .left-section p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }
.right-section {
    width: 40%;
    text-align: right;
}

.image-container {
    margin-bottom: 20px;
}

    .image-container img {
        width: 100%;
        border-radius: 50%;
        border: 2px solid red;
        transition: transform 0.5s ease-in-out;
    }

.rotate {
    transform: rotate(360deg);
}

.home-index-container .nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-index-container .nav-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin: 5px 0;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

    .home-index-container .nav-item:hover {
        background-color: #007bff;
        color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }




.circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 50px auto;
    left: 200px;
    top: -20px;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
}

.center-content {
    margin-left: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

    .center-content ul {
        list-style-type: none;
        padding: 0;
    }

    .center-content li {
        cursor: pointer;
        padding: 5px;
    }

        .center-content li.active {
            color: orangered; /* 선택된 항목의 텍스트 색상을 파란색으로 변경 */
            font-weight: bold; /* 선택된 항목의 텍스트를 굵게 표시 */
        }

        .center-content li:hover {
            background-color: #f0f0f0;
        }

.circle-item {
    position: absolute;
    width: 120px;
    height: 120px;
    transform-origin: center center;
    transition: all 0.5s ease, width 0s, height 0s;
}

.circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid black; /* 기본 테두리 검정색 */
    transition: border-color 0.5s ease;
}

.circle-item.active .circle-image {
    border-color: orangered; /* 선택된 항목 테두리 붉은색 */
}
/*     .center-point {
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: red;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    } */

.circle-item.active {
    width: 240px;
    height: 240px;
    z-index: 10;
    transition: all 0.5s ease;
}

.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-container li {
    font-size: 16px;
    margin: 10px 0;
    color: #777; /* 기본 글자 색상 */
}

    .menu-container li.active {
        color: #ff4500; /* 활성화된 항목의 글자색 */
        font-weight: bold; /* 활성화된 항목의 글자 굵게 */
    }

.menu-container .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff4500; /* 점의 색상 */
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.learn-more {
    display: flex; /* 아이콘과 텍스트를 가로로 나란히 배치 */
    align-items: center; /* 수직 가운데 정렬 */
    justify-content: center; /* 수평 가운데 정렬 */
    margin: 5px 0 80px 0; /* 여백 설정 */
    background-color: white; /* 버튼 배경색 흰색 */
    color: orangered; /* 텍스트와 아이콘 색상 오렌지 레드 */
    border: 2px solid orangered; /* 오렌지 레드 테두리 */
    border-radius: 50px; /* 둥근 모서리 */
    padding: 10px 20px; /* 버튼 내부 여백 */
    font-size: 1.0rem; /* 텍스트 크기 */
    font-weight: bold; /* 굵게 */
    cursor: pointer; /* 마우스 커서를 손가락 모양으로 변경 */
    opacity: 1.0; /* 버튼 투명도 */
    transition: background-color 0.3s ease, color 0.3s ease; /* 부드러운 전환 효과 */
}

    .learn-more .arrow {
        margin-right: 8px; /* 아이콘과 텍스트 사이 간격 */
    }

    .learn-more:hover {
        background-color: orangered; /* 마우스 호버 시 배경색 오렌지 레드 */
        color: white; /* 마우스 호버 시 텍스트 색상 흰색 */
    }

/* h2 스타일 */
#description-title {
    color: dodgerblue; /* 텍스트 색상 */
    font-size: 2.5rem; /* 폰트 크기 */
    font-weight: bold; /* 텍스트 굵게 */
    margin-bottom: 10px; /* 하단 여백 */
}

/* p 스타일 */
#description-text {
    color: dodgerblue; /* 텍스트 색상 */
    font-size: 1.1rem; /* 폰트 크기 */
    line-height: 1.5; /* 텍스트 간격 */
    margin-bottom: 20px; /* 하단 여백 */
}

/* 모바일 및 태블릿 반응형 스타일 */
@media (max-width: 991.98px) {
    .text-company-info-section {
        margin-top: -10%;
        max-width: 100%;
        color: Black;
        text-align: left; /* 텍스트 왼쪽 정렬 */
    }

        .text-company-info-section h1 {
            left: 10%; /* 좌측 여백 */
            font-size: 1.2rem;
            font-weight: bold;
            margin-left: 1%;
            margin-bottom: 1%;
            line-height: 1.5;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* 텍스트 그림자 추가 */ */
        }

        .text-company-info-section .highlight {
            color: red;
            font-size: 1.8rem;
            font-weight: bold;
        }

    .container {
        margin-top: 0%;
        margin-left: -5%;
        flex-direction: column; /* 모바일에서는 세로로 배치 */
    }
    .left-section {
        width: 100%;
    }
        .left-section h1 {
            font-size: 2.0rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .left-section p {
            font-size: 0.7rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

    #description-title {
        color: dodgerblue; /* 텍스트 색상 */
        font-size: 2.0rem; /* 폰트 크기 */
        font-weight: bold; /* 텍스트 굵게 */
        margin-bottom: 10px; /* 하단 여백 */
    }

    /* p 스타일 */
    #description-text {
        color: dodgerblue; /* 텍스트 색상 */
        font-size: 0.8rem; /* 폰트 크기 */
        line-height: 1.5; /* 텍스트 간격 */
        margin-bottom: 20px; /* 하단 여백 */
    }
    /*원 위치*/
    .circle-container {
        position: relative;
        width: 100%;
        height: 300px;
        /*overflow: hidden;*/ /* 벗어나는 이미지 숨김 */
        margin: 50px auto;
        left: 8%;
        margin-top: -20%;
    }

    .circle-svg {
        position: absolute;
        top: 0;
        left: 0;
    }

    /*원 안에 목록*/
    .center-content {
        margin-left: 0px;
        position: absolute;
        top: 50%;
        left:45%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 20;
    }

        .center-content ul {
            list-style-type: none;
            padding: 0;
        }

        .center-content li {
            cursor: pointer;
            padding: 2px;
        }

            .center-content li.active {
                color: orangered; /* 선택된 항목의 텍스트 색상을 파란색으로 변경 */
                font-weight: bold; /* 선택된 항목의 텍스트를 굵게 표시 */
            }

            .center-content li:hover {
                background-color: #f0f0f0;
            }

    .circle-item {
        position: absolute;
        width: 50px;
        height: 50px;
        transform-origin: center center;
        transition: all 0.5s ease, width 0s, height 0s;
    }

    .circle-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid black; /* 기본 테두리 검정색 */
        transition: border-color 0.5s ease;
    }

    .circle-item.active .circle-image {
        border-color: orangered; /* 선택된 항목 테두리 붉은색 */
    }
    /*     .center-point {
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: red;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    } */

    .circle-item.active {
        width: 50px;
        height: 50px;
        z-index: 10;
        transition: all 0.5s ease;
    }
}
