/* 메인 비주얼 영역 */
.destination-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.visual-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.visual-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.visual-content .subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 소개 영역 */
.destination-intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 주요 지역 소개 */
.destination-regions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.region-item {
    margin-bottom: 80px;
}

.region-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.region-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.region-image:hover img {
    transform: scale(1.05);
}

.region-content {
    padding: 30px;
}

.region-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.region-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.region-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-highlights li {
    padding: 10px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}

.region-highlights li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    top: 8px;
}

/* 추천 관광지 */
.destination-attractions {
    padding: 80px 0;
    background-color: #fff;
}

.attraction-card {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-image {
    height: 250px;
    overflow: hidden;
}

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

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 20px;
    background: #fff;
}

.attraction-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 발리 문화 체험 */
.destination-experiences {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.experience-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.experience-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.experience-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.experience-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 여행 문의 섹션 */
.destination-inquiry {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/destinations/bali-inquiry.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.inquiry-content {
    max-width: 700px;
    margin: 0 auto;
}

.inquiry-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.inquiry-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .visual-content h1 {
        font-size: 3rem;
    }

    .region-image img {
        height: 300px;
    }

    .region-content {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .destination-visual {
        height: 400px;
    }

    .visual-content h1 {
        font-size: 2.5rem;
    }

    .visual-content .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .region-content h3 {
        font-size: 1.8rem;
    }

    .destination-inquiry {
        padding: 60px 0;
    }
}

/* AOS 애니메이션 지원 */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
} 