/* Sightseeing Section CSS */
.sightseeing-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #0c3649);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color, #77a36b);
    margin: 20px auto;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-name {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color, #0c3649);
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sightseeing-section {
        padding: 60px 0;
    }
    
    .destination-name {
        font-size: 1.1rem;
        padding: 15px;
    }
}