/* City Introduction Styles */

/* Photo Gallery */
.city-photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.city-photo-main {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.city-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-photo-main:hover img {
    transform: scale(1.05);
}

.city-photo-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.city-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.city-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-photo-item:hover img {
    transform: scale(1.05);
}

/* Why Visit Cards */
.why-visit-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-visit-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.why-visit-icon {
    font-size: 48px;
    color: var(--brown-accent);
    margin-bottom: 20px;
}

.why-visit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.why-visit-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .city-photo-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .city-photo-main {
        height: 300px;
    }
    
    .city-photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
    
    .city-photo-item {
        height: 150px;
    }
    
    .why-visit-card {
        padding: 25px 20px;
    }
    
    .why-visit-icon {
        font-size: 36px;
    }
}
