/* 目的地导航样式 */
.destination-nav {
    margin-top: 70px;
    background: #f8f8f8;
    padding: 30px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-group {
    margin-bottom: 20px;
}

.nav-group:last-child {
    margin-bottom: 0;
}

.nav-group h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.nav-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-items a {
    text-decoration: none;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-items a:hover,
.nav-items a.active {
    background: #c41230;
    color: #fff;
}

/* 目的地列表样式 */
.destinations {
    padding: 40px 0;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-bar {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    color: #666;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    outline: none;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: #ffc107;
    font-weight: bold;
}

.price {
    color: #c41230;
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    text-decoration: none;
    color: #666;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: #c41230;
    color: #fff;
    border-color: #c41230;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .destination-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
} 