/* 주요여행지 메인 섹션 */
.destinations-main {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

/* 여행지 카드 스타일 */
.destination-item {
    margin-bottom: 50px;
}

.destination-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.destination-link:hover {
    transform: translateY(-5px);
}

.destination-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.destination-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.destination-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* 이미지 스타일 */
.destination-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

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

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

/* 텍스트 영역 스타일 */
.destination-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destination-text h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.destination-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .destination-content {
        flex-direction: column;
    }

    .destination-image {
        flex: 0 0 100%;
        height: 250px;
    }

    .destination-text {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .destinations-main {
        padding-top: calc(var(--header-height) + 10px);
        padding-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .destination-title {
        font-size: 1.8rem;
    }

    .destination-card {
        padding: 20px;
    }

    .destination-text h4 {
        font-size: 1.5rem;
    }
}

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

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