/* 로링투어 일정안내 섹션 스타일 */
.tour-schedule-section {
/* 짙은 네이비 배경색 */
    color: white;
    padding: 100px 0 0;
    margin-bottom:0;
    /* overflow: auto; */
    position: relative;
}

.tour-schedule-container {
    width:95vw;
    max-width: 1800px; /* 너비 1570px로 고정 */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    position:sticky;
    padding:32px 80px 32px 80px;

    top:calc(100px + 2.5vh);
    height:calc(95vh - 100px);
    background-color: #003366; 
    border-radius:20px;
}

/* 좌측 영역 스타일 */
.tour-schedule-left {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    position: relative;
}

.tour-title-container {
    margin-bottom: 40px;
}

.tour-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}

.tour-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.tour-image-container {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tour-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
}

.tour-image-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.tour-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tour-nav-dots {
    display: flex;
    gap: 10px;
}

.tour-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tour-nav-dot.active {
    background-color: white;
}

/* 우측 영역 스타일 */
.tour-schedule-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.day-container {
    position: relative;
    height: 580px; /* 고정 높이 설정 */
    align-items:end;
    display:flex;

}

.day-content {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
    transform: translateY(40px);
}

.day-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.day-header {
    /* margin-bottom: 10px; */
}

.day-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.day-details {
    margin-bottom: 30px;
    height:220px;
}

.day-item {
    font-size: 20px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    /* margin-bottom: 5px; */
}

.day-images {
    display: flex;
    gap: 15px;
    overflow: hidden;
    width: 100%;
    height: 140px;
    position: relative;
}

.day-image-carousel {
    display: flex;
    position: absolute;
    transition: transform 0.5s ease;
    height: 100%;
}

.day-image-item {
    flex: 0 0 240px;
    height: 100%;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.day-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.day-image-item:hover .day-image {
    transform: scale(1.05);
}

.day-details .day-item {
   font-family: 'Pretendard', sans-serif;
   font-variant-numeric: tabular-nums;  /* 숫자 고정폭 */
   font-feature-settings: "tnum" 1;  /* 숫자 고정폭 활성화 */
   letter-spacing: 0.02em;
}

.center_sub_small {
   text-align: center;
   font-size: 20px;
}

.link_line.new_btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.link_line.new_btn a {
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    /* border 제거 */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
	border:0px;
}

.link_line.new_btn a:hover {

	color:#0e6ca5;
}



/* 반응형 스타일 */
@media (max-width: 1600px) {
    .tour-schedule-container {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .tour-schedule-container {
        flex-direction: column;
    }
    
    .tour-schedule-left, 
    .tour-schedule-right {
        width: 100%;
        padding-right: 0;
    }
    
    .tour-schedule-left {
        margin-bottom: 50px;
    }
    
    .tour-main-title {
        font-size: 40px;
    }
    
    .day-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .tour-main-title {
        font-size: 36px;
    }
    
    .tour-image-container {
        height: 300px;
    }
    
    .day-title {
        font-size: 28px;
    }
    
    .day-image-carousel {
        flex-wrap: wrap;
    }
    
    .day-image-item {
        flex: 0 0 140px;
        height: 100px;
    }
}