* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../ahc/BackGround.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* 컨테이너 - 중앙 정렬만 */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* 중앙 래퍼 - 고정 크기 */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 1300px;  /* ✅ 고정 너비 */
    height: 900px;  /* ✅ 고정 높이 */
}

/* 네비게이션 버튼 - fixed로 양 끝 */
.nav-button {
    position: fixed;
    width: 60px;
    height: 100vh;
    background: rgba(226, 232, 255, 0.676);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1000;
    border-radius: 50px;
    top: 0;
    text-decoration: none;
}

.nav-left {
    left: 0;
}

.nav-right {
    right: 0;
}

.nav-button:hover {
    background: rgba(100, 120, 200, 0.5);
}

.nav-button svg {
    width: 40px;
    height: 40px;
    fill: #4a5fc1;
    transition: transform 0.3s ease;
}

.nav-button:hover svg {
    transform: scale(1.3);
}

/* 인덱스 홈 버튼 */
.home-button {
    position: fixed;
    top: 55px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: rgba(226, 232, 255, 0.676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-button:hover {
    background: rgba(100, 120, 200, 0.8);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-button svg {
    width: 30px;
    height: 30px;
    fill: #4a5fc1;
}

/* 왼쪽 섹션 - 완전 고정 */
.left-section {
    width: 580px;  /* ✅ 고정 */
    height: 900px;  /* ✅ 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.left-section img {
    width: 550px;  /* ✅ 픽셀 고정 */
    height: auto;
    max-height: 850px;  /* ✅ 최대 높이 */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* 오른쪽 섹션 - 완전 고정 */
.right-section {
    width: 750px;  /* ✅ 고정 */
    height: 900px;  /* ✅ 고정 */
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 20px;
    gap: 30px;
    overflow: hidden;
}

/* 상단 메뉴 */
.top-menu {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* 메뉴 링크 */
.menu-link {
    text-decoration: none;
    display: block;
}

/* 메뉴 아이템 - 픽셀 고정 */
.menu-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 220px;  /* ✅ 고정 */
    height: 130px;  /* ✅ 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-link:hover .menu-item {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 220px;  /* ✅ 고정 */
    height: 130px;  /* ✅ 고정 */
    object-fit: cover;
    display: block;
}

/* 하단 설명 박스 - 픽셀 고정 */
.description-box {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.description-box img {
    width: 670px;  /* ✅ 픽셀 고정 */
    height: auto;
    max-height: 600px;  /* ✅ 최대 높이 */
    object-fit: contain;
}

/* 하단 인디케이터 */
.slide-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 95, 193, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a5fc1;
    transform: scale(1.3);
}

/* 미디어 쿼리 제거 - 항상 같은 레이아웃 유지 */

/* 미디어 쿼리에서도 동일 크기 강제 */
@media screen and (max-width: 1600px) {
    .menu-item {
        width: 180px !important;
        height: 100px !important;
    }
    
    .menu-item img {
        width: 180px !important;
        height: 100px !important;
    }
}

@media screen and (min-width: 1920px) {
    .menu-item {
        width: 180px !important;
        height: 100px !important;
    }
    
    .menu-item img {
        width: 180px !important;
        height: 100px !important;
    }
}