/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* 한국어 폰트 설정 강화 - Noto Sans KR 사용 */
html {
    font-family: 'Noto Sans KR', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 모든 텍스트 요소에 한국어 폰트 적용 */
body, p, div, span, a, li, ul, ol, button, input, textarea, select {
    font-family: 'Noto Sans KR', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 제목 요소들 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans KR', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* 특정 섹션의 텍스트 스타일 */
.title h2, .title h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 800;
}

.intro p, .lead {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

.small, small {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
}

/* 폼 요소들 */
.form-control, .form-select, .btn {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
}

/* 네비게이션 */
.navbar-nav .nav-link {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
}

/* 카드 및 박스 요소들 */
.card, .box_cat_rooms, .box_facilities, .box_overlay {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
}

/* 커스텀 아이콘 스타일 */
.customicon-golf:before {
    content: "⛳";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-maid:before {
    content: "👩‍💼";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-cleaning:before {
    content: "🧹";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-laundry:before {
    content: "👔";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-food:before {
    content: "🍽️";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-tv:before {
    content: "📺";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.customicon-pool:before {
    content: "🏊‍♂️";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* 가격 표시는 영문 폰트 유지 */
.price, .currency, .dollar {
    font-family: 'Montserrat', sans-serif;
}

/* Testimonials 섹션 스타일 수정 */
.box_overlay {
    padding: 30px 40px;
}

.box_overlay .testimonial-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.box_overlay .testimonial-thumbnail {
    flex-shrink: 0;
    margin-left: 10px;
}

.box_overlay .testimonial-thumbnail img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.box_overlay .testimonial-text {
    flex: 1;
    margin-right: 20px;
}

.box_overlay .rating {
    text-align: center;
    margin-bottom: 15px;
}

.box_overlay .rating i {
    font-size: 1.2rem;
    margin: 0 2px;
}

.box_overlay .comment {
    text-align: left;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.box_overlay .testimonial-info {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.box_overlay .testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.box_overlay .testimonial-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 날짜 및 시간 표시는 영문 폰트 유지 */
.date, .time, .timestamp {
    font-family: 'Montserrat', sans-serif;
}

/* 투어 카드 스타일 */
.tour-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tour-thumbnail {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-thumbnail img {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tour-duration,
.tour-price {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-duration i,
.tour-price i {
    font-size: 0.9rem;
}

.tour-card .card-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-card .card-title a:hover {
    color: #978667;
}

.tour-card .card-title .indicator {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.tour-card .card-title a[aria-expanded="true"] .indicator {
    transform: rotate(45deg);
}

.tour-meta .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
}

.tour-card .card-text {
    margin-top: 15px;
    line-height: 1.6;
}

/* 투어 기본 이미지 스타일 */
.tour-thumbnail img[src*="default_tour.jpg"] {
    opacity: 0.8;
    filter: grayscale(20%);
}

.tour-thumbnail img[src*="default_tour.jpg"]:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* 투어 이미지 로딩 실패시 스타일 */
.tour-thumbnail img[onerror] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .tour-thumbnail {
        height: 150px;
    }

    .tour-info {
        gap: 10px;
    }

    .tour-duration,
    .tour-price {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* ========================================
   Footer 리뉴얼 스타일
   ======================================== */

/* 푸터 상단 내비게이션 바 */
.footer-nav-bar {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: wrap;
}

.footer-nav-links li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer-nav-links li a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.4);
}

/* move_content 오버라이드 - 겹침 방지 */
footer .move_content.footer-main-content {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* 회사명 */
.footer-company-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* 사업자 정보 */
.footer-business-details {
    margin-top: 18px;
}

.footer-business-details p {
    color: #888;
    font-size: 12.5px;
    line-height: 1.85;
    margin-bottom: 1px;
}

.footer-business-details a {
    color: #aaa;
    text-decoration: none;
}

.footer-business-details a:hover {
    color: #fff;
}

/* 오른쪽 영역 - 테이블형 정렬 */
.footer-right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 공통 info-row (Customer Center, 보험 공용) */
.footer-info-row {
    display: flex;
    align-items: baseline;
}

.footer-info-label {
    flex-shrink: 0;
    width: 120px;
    padding-right: 18px;
    border-right: 1px solid rgba(255,255,255,0.15);
    margin-right: 18px;
    text-align: right;
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.footer-info-value {
    flex: 1;
    min-width: 0;
}

/* Customer Center 전화번호 */
.footer-cs-phone {
    display: block;
    color: #ebd7b2 !important;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-decoration: none !important;
}

.footer-cs-phone:hover {
    color: #fff !important;
}

.footer-cs-hours {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}

/* 여행보증보험 번호 */
.footer-ins-number {
    display: block;
    color: #ebd7b2;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-ins-verify {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #888 !important;
    font-size: 12.5px;
    text-decoration: none !important;
    margin-top: 5px;
    transition: color 0.3s;
}

.footer-ins-verify:hover {
    color: #fff !important;
}

.footer-ins-verify i {
    font-size: 9px;
}

/* 소셜 링크 */
.footer-social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255,255,255,0.07);
    color: #aaa;
    text-decoration: none !important;
    transition: all 0.3s;
    font-size: 17px;
}

.footer-social-links a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.footer-social-links .social-icon-text {
    font-weight: 800;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

/* 하단 저작권 */
footer .copy {
    color: #555;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* 반응형 - 태블릿 */
@media (max-width: 991px) {
    .footer-right-section {
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-social-links {
        justify-content: flex-start;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 767px) {
    .footer-nav-links {
        gap: 12px;
    }

    .footer-nav-links li a {
        font-size: 13px;
    }

    footer .move_content.footer-main-content {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .footer-company-info .d-flex {
        flex-direction: column;
        gap: 8px;
    }

    .footer-company-name {
        font-size: 17px;
    }

    .footer-business-details p {
        font-size: 11.5px;
        line-height: 1.7;
    }

    .footer-info-row {
        flex-direction: column;
        gap: 5px;
    }

    .footer-info-label {
        width: auto;
        text-align: left;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        font-size: 13px;
    }

    .footer-cs-phone {
        font-size: 22px;
    }

    .footer-ins-number {
        font-size: 14px;
    }

    .footer-social-links {
        justify-content: flex-start;
    }
}
