/* 景点部分样式 */
.spot-section {
    scroll-margin-top: 80px; /* 为锚点导航留出空间 */
}

.spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spot-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spot-card:hover {
    transform: translateY(-5px);
}

.spot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spot-card h3 {
    color: #8B4513;
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #E8C4A0;
}

.spot-card p {
    padding: 1rem;
    margin: 0;
}

.spot-info {
    background-color: #FFF5EE;
    padding: 1rem;
}

.spot-info p {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .spot-grid {
        grid-template-columns: 1fr;
    }
    
    .spot-card img {
        height: 250px;
    }
} 