/* 패키지 상세 페이지 스타일 */

.package-detail {
    padding-bottom: 50px;
}

/* 패키지 헤더 */
.package-header {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-bottom: 50px;
}

.package-info {
    padding-right: 30px;
}

.package-tag {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.package-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
}

.package-meta span i {
    margin-right: 5px;
    color: #ff6b6b;
}

.package-price {
    margin-top: 30px;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
}

.package-price small {
    color: #666;
    font-size: 0.9rem;
}

.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 상세 페이지 이미지 스타일 */
.package-detail .package-image {
    height: auto;
    max-height: 500px;
}

.package-detail .package-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 컨텐츠 박스 */
.content-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

/* 일정 타임라인 */
.schedule-timeline {
    position: relative;
    padding-left: 50px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -33px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e9ecef;
}

.timeline-item .day {
    position: absolute;
    left: -50px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-item .content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.timeline-item .content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* 포함/불포함 사항 */
.include-list, .exclude-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.include-list li, .exclude-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.include-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.exclude-list li:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #dc3545;
    position: absolute;
    left: 0;
}

/* 사이드바 */
.sidebar {
    position: sticky;
    top: 20px;
}

.booking-box, .info-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-box h3, .info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    color: #ff6b6b;
    margin-right: 10px;
    width: 20px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #666;
}

.info-box li:last-child {
    border-bottom: none;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .package-header {
        text-align: center;
        padding: 30px 0;
    }

    .package-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .package-meta {
        justify-content: center;
    }

    .content-box {
        padding: 20px;
    }

    .schedule-timeline {
        padding-left: 30px;
    }

    .timeline-item .day {
        left: -30px;
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* 패키지 카드 스타일 */
.package-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.package-meta i {
    margin-right: 5px;
}

.package-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.package-price .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0d6efd;
}

.package-price small {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #0d6efd;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #0b5ed7;
    color: #fff;
} 