

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    line-height: 1.6;
}

header {
    background-color: #006633; 
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 5px solid #cc0000; 
}

/* Flex Container for the Gallery */
.city-gallery {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px; 
    padding: 20px;
    max-width: 1300px; 
    margin: 20px auto; 
}


.city-card {
    
    flex: 1 1 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden; 
    
 
    display: flex;
    flex-direction: column; 
    transition: transform 0.4s ease;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.city-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-bottom: 4px solid #cc0000;
}

.city-info {
    padding: 25px;
}

.city-info h2 {
    color: #006633;
    margin-bottom: 10px;
}

/* ------------------ MEDIA QUERY: TABLET/SMALL LAPTOP VIEW (2 COLUMNS) ------------------ */

@media (min-width: 650px) {
    .city-card {
        /* TABLET: Two columns per row */
        flex: 1 1 calc(50% - 30px); 
    }
}


/* ------------------ MEDIA QUERY: LARGE LAPTOP/DESKTOP VIEW (3 COLUMNS) ------------------ */

@media (min-width: 1024px) {
    .city-card {
        /* LAPTOP: Three columns per row */
        flex: 1 1 calc(33.33% - 20px); 
    }
}

/* Footer Style */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #f0f0f0;
    margin-top: 40px;
}
.link{
    color: #f0f0f0;
    text-decoration: none;
}