/* ----- 기본 설정 및 변수 ----- */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

/* ----- 메인 컨테이너 및 배경 ----- */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
    /* 중요: 배경 이미지를 images 폴더에 넣어주세요 */
    background: url('image/banner01_bg.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* ----- 텍스트 및 로고 영역 ----- */
.text-content {
    flex-basis: 65%;
    color: var(--text-dark);
}

.logo {
    margin-bottom: 25px;
}

/* ----- 버튼 그룹 ----- */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  
}

/* 버튼 호버(Hover) 상태 */
.btn:hover {
    transform: translateY(-3px);
    transition: 0.5s;  
}

.bb-mini:hover {
        content:url(image/baneer02_kpmini_but_on.png);
       width: 100%;
       height: 100%;
       object-fit: cover;
}
.bb-ass:hover {
        content:url(image/baneer02_kpassets_but_on.png);
       width: 100%;
       height: 100%;
       object-fit: cover;
}
.bb-remo:hover {
        content:url(image/baneer02_remot_but_on.png);
       width: 100%;
       height: 100%;
       object-fit: cover;
}
.bb-kakao:hover {
        content:url(image/baneer02_kakao_but_on.png);
       width: 100%;
       height: 100%;
       object-fit: cover;
}
.bb-cs:hover {
        content:url(image/baneer02_cs_but_on.png);
       width: 100%;
       height: 100%;
       object-fit: cover;
}


/* ----- 이미지 영역 ----- */
.image-content {
    flex-basis: 35%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: left;
}

.person-image {
    max-width: 100%;
    height: auto;
    max-height: 80vh; /* 이미지 최대 높이 제한 */
}

.sticker {
    position: absolute;
    top: 20px;
    left: 240px;
    background-color: #333;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    transform: rotate(15deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ----- 장식용 라인 ----- */
.vertical-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
}
.vertical-line.left { left: 5%; }
.vertical-line.right { right: 5%; }