@charset "utf-8";

#wrapper {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #dbf6ff 50%, #e9ecef 100%);
    min-height: 100vh;
}

.about-orora {
    width: 940px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    
    animation: zoomUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-orora:hover {
    transform: translateY(-10px); /* 5px보다 조금 더 티나게 10px 추천 */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* 공중에 뜬 느낌 추가 */
}

@keyframes zoomUp {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-orora>div {
    margin-bottom: 120px;
}

.about-orora h3 {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.about-orora h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #96daff, #0175c1);
    border-radius: 2px;
}

.orora-background {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(219, 246, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orora-background:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(1, 117, 193, 0.15);
}

.orora-background h3 {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.orora-background h3::after {
    background: linear-gradient(90deg, #96daff, #0175c1);
}

.orora-background .content {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    text-align: center;
}
.orora-background .content .bar::after{
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    margin: 0 auto;
    background: #dadada;

}
.orora-background .content .orora{
    position: relative; 
    font-weight: 700;
    color: #5401c1;
}
.orora-background .content .orora:first-child{
    padding-left: 18px;
}
.orora-background .content .orora .ororaImg{ 
    display: block;
    position: absolute;
    bottom: 2px;
    padding-right: 20px;
    width: 20px;
    height: 16px;
    line-height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/ororaEmoji.png);
}
.orora-background .content .arataBusan{ 
    font-weight: 700;
    color: #0175c1;
}
.orora-background .content .s500{
    font-weight: 500;
    color: #121212;
}

.team-introduce {
    /* 기존 스타일 */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(219, 246, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    /* 변화를 티 나게 만들기 위한 설정 */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.team-introduce:hover {
    /* 1. 위치 변화: 위로 확 들고, 3D 기울기 추가 */
    transform: translateY(-15px) rotateX(5deg); 

    /* 2. 테두리 변화: 더 밝고 선명한 하늘색으로 */
    border: 1px solid rgba(0, 198, 255, 0.8);

    /* 3. [핵심 포인트] 네온 광채 그림자 */
    /* 여러 겹의 그림자를 쌓아서 빛이 퍼지는 느낌을 줍니다 */
    box-shadow: 
        0 0 15px rgba(0, 198, 255, 0.4),  /* 안쪽 푸른 광채 */
        0 0 30px rgba(0, 198, 255, 0.2),  /* 바깥쪽 넓은 광채 */
        0 20px 40px rgba(0, 0, 0, 0.15);  /* 실제 바닥 그림자 */
}

.team-introduce h3 {
    color: #2c3e50;
    margin-bottom: 50px;
}

.team-introduce-list {
    display: grid;
    gap: 30px;
}

.team-introduce .team-introduce-list>li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(219, 246, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-introduce .team-introduce-list>li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #96daff, #0175c1, #a8dcff);
    opacity: 0.8;
}

.team-introduce .team-introduce-list>li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 117, 193, 0.12);
    border-color: rgba(150, 218, 255, 0.8);
}

.team-introduce .profile {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-introduce .profile .name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-left: 0;
}

.team-introduce .profile .role {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
    margin-left: 0;
    padding: 6px 16px;
    /* background: linear-gradient(135deg, #96daff, #0175c1); */
    background: #0175c1;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(1, 117, 193, 0.3);
}

.team-introduce .profile .pic {
    margin-bottom: 0;
}

.team-introduce .profile .pic img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dbf6ff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-introduce .profile .pic img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(1, 117, 193, 0.2);
    border-color: #96daff;
}

.team-introduce .record {
    width: 50%;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #dbf6ff 100%); */
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 0;
    margin-right: 0;
    padding: 25px;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: inset 0 2px 8px rgba(1, 117, 193, 0.06);
    border: 1px solid rgba(219, 246, 255, 0.8);
    height: auto;
    min-height: 180px;
    transition: all 0.3s ease;
}

/* 팀장처럼 record 하나만 있는 경우 스타일 조정 */
/* record-front가 없는 경우 (팀장) - record를 더 넓게 표시 */
.team-introduce .team-introduce-list>li:not(:has(.record-front)) .record {
    width: 60%;
}

.team-introduce .team-introduce-list>li:not(:has(.record-front)) .profile {
    width: 35%;
}

/* record-front가 있는 경우 (다른 팀원들) - profile 너비 조정 */
.team-introduce .team-introduce-list>li:has(.record-front) .profile {
    width: 25%;
    min-width: 180px;
}

.team-introduce .record>p {
    display: list-item;
    margin-left: 1.5em;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    color: #495057;
}

.team-introduce .record>p::before {
    content: '•';
    position: absolute;
    left: -1.5em;
    color: #0175c1;
    font-size: 16px;
    font-weight: bold;
}

.team-introduce .record:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 117, 193, 0.12);
    border-color: rgba(150, 218, 255, 0.8);
}

/* 프론트엔드/백엔드 개발 기록 스타일 */
.team-introduce .record-front,
.team-introduce .record-back {
    width: 48%;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: inset 0 2px 8px rgba(1, 117, 193, 0.06);
    border: 1px solid rgba(219, 246, 255, 0.8);
    height: auto;
    min-height: 180px;
    transition: all 0.3s ease;
}

.team-introduce .record-front:hover,
.team-introduce .record-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 117, 193, 0.12);
    border-color: rgba(150, 218, 255, 0.8);
}

.team-introduce .record-front h2,
.team-introduce .record-back h2 {
    font-size: 18px;
    font-weight: 600;
    color: #0175c1;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(1, 117, 193, 0.2);
}

.team-introduce .record-front>p,
.team-introduce .record-back>p {
    display: list-item;
    margin-left: 1.5em;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    color: #495057;
}

.team-introduce .record-front>p::before,
.team-introduce .record-back>p::before {
    content: '•';
    position: absolute;
    left: -1.5em;
    color: #0175c1;
    font-size: 16px;
    font-weight: bold;
}

/* record-front와 record-back이 함께 있을 때 레이아웃 조정 */
.team-introduce .team-introduce-list>li {
    align-items: flex-start;
}

/* record-front/back이 있을 때 profile과 record 영역의 너비 조정 */
.team-introduce .team-introduce-list>li .record-front,
.team-introduce .team-introduce-list>li .record-back {
    width: 35%;
    min-width: 200px;
}

/* record-front나 record-back이 있는 경우 (다른 팀원들) - profile 너비 조정 */
.team-introduce .team-introduce-list>li:has(.record-front) .profile,
.team-introduce .team-introduce-list>li:has(.record-back) .profile {
    width: 25%;
    min-width: 180px;
}

/* record-front와 record-back이 둘 다 있을 때 */
.team-introduce .team-introduce-list>li .record-front + .record-back {
    margin-left: 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .about-orora {
        width: 90%;
        padding-top: 40px;
    }
    
    .team-introduce .team-introduce-list>li {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .team-introduce .profile,
    .team-introduce .record,
    .team-introduce .record-front,
    .team-introduce .record-back {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .team-introduce .team-introduce-list>li {
        flex-direction: column;
    }
    
    .team-introduce .team-introduce-list>li .profile {
        width: 100%;
    }
    
    .team-introduce .team-introduce-list>li .record-front,
    .team-introduce .team-introduce-list>li .record-back {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .team-introduce .profile .pic img {
        width: 140px;
        height: 140px;
    }
    
    .about-orora h3 {
        font-size: 28px;
    }
}