@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");

/* BODY */
body {
    background: url(../img/main-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-y: hidden;
}

/* 전체영역 */
.warp {
    display: flex;
    margin: 40px;
    align-items: center;
    height: 90vh;
}

/* 좌측 INFO 영역 */
.left {
    background-image: url(img/left-bg.png);
    display: flex;
    background-position: center;
    justify-content: space-between;
    flex-direction: column;
    width: 1000px;
    height: 730px;
    margin-right: 50px;
    border-radius: 30px;
    padding: 80px 50px 40px 50px;
    color: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* 상단 타이틀 (영업관리 · ERP) */
.left-area {
    display: flex;
    justify-content: space-between;
    color: #FFF;
    font-family: Pretendard;
    align-items: baseline;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 0;
    height: 70%;
}

/* 상단 타이틀 (_____SYSTEM) */
.left-system {
    font-weight: 100;
}

/* 하단 INFO 텍스트 */
.left-desc {
    color: #FFF;
    font-family: Pretendard;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 56px;
    height: 20%;
}

/* 푸터 COPYRIGHT 및 로고 */
.left-footer {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 100;
}

/* 우측영역 */
.right {
    display: flex;
    flex-direction: column;
}

/* 공통 카드 스타일 */
.card {
    position: relative;
    width: 980px;
    height: 403px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* 첫 번째 카드 하단 마진 추가 */
.card:first-child {    
    margin-bottom: 40px;
}

/* 카드 내부의 이미지 스타일 */
.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 카드 내부의 콘텐츠 스타일 */
.card-content {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 70px 50px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    font-family: Pretendard;
}

/* 마우스 오버 시 이미지 확대 */
.card:hover .card-img {
    transform: scale(1.05);
}

/* 상단 타이틀 (영업관리 · ERP) */
.area {
    color: #FFF;
    font-family: Pretendard;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 타이틀 하단 영문 타이틀 */
.subtitle {
    font-weight: 100;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 42px;
}

/* 소개문구 */
.desc {
    font-weight: 300;
    font-size: 22px;
    letter-spacing: -1.8px;
    line-height: 36px;
    margin-top: 40px;
}

/* 버튼 텍스트 : 클릭시  ----> */
.footer {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: space-between;
    font-size: 18px;
    letter-spacing: -1.12px;
    line-height: 36px;
    color: white;
    font-weight: 600;
}
