body {
    margin: 0;
    overflow-x: hidden;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.background-image {
    width: 100%;
    height: 5604px;
    background-image: url('images/background-soc.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.clickable-area {
    position: absolute;
    cursor: pointer;
    /* For debugging: background-color: rgba(255, 0, 0, 0.3); */
}

/* 특정 클릭 가능한 영역들의 위치 및 크기 (1200px 너비 기준) */
#area1 { top: 1129px; left: 49px; width: 162px; height: 89px; }
#area2 { top: 1129px; left: 231px; width: 162px; height: 89px; }
#area3 { top: 1129px; left: 420px; width: 162px; height: 89px; }
#area4 { top: 1129px; left: 609px; width: 162px; height: 89px; }
#area5 { top: 1129px; left: 795px; width: 162px; height: 89px; }
#area6 { top: 1129px; left: 980px; width: 162px; height: 89px; }
#area7 { top: 1354px; left: 65px; width: 199px; height: 136px; }
#area8 { top: 1354px; left: 279px; width: 199px; height: 136px; }
#area9 { top: 1354px; left: 493px; width: 199px; height: 136px; }
#area10 { top: 1354px; left: 707px; width: 199px; height: 136px; }
#area11 { top: 1354px; left: 921px; width: 199px; height: 136px; }
#area12 { top: 1554px; left: 40px; width: 1113px; height: 112px; }
#area13 { top: 5440px; left: 59px; width: 1077px; height: 112px; }

/* 캐러셀 스타일 */
.carousel-container {
    position: absolute;
    overflow: hidden;
}

#carousel1 { top: 1928px; left: 61px; width: 1077px; height: 890px; }
#carousel2 { top: 3120px; left: 61px; width: 1077px; height: 840px; }
#carousel3 { top: 4177px; left: 61px; width: 1077px; height: 1200px; }


.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    flex-shrink: 0;
}

.carousel-item.active {
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}