/**
 * Kind Cities - Frontend Styles
 */

/* City Container */
.kc-city-container {
    width: 100%;
    margin-bottom: 30px;
}

/* City Header */
.kc-city-header {
    margin-bottom: 20px;
}

.kc-city-title {
    margin-bottom: 5px;
    font-size: 2em;
}

.kc-city-location {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* City Stats */
.kc-city-stats-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.kc-city-stat {
    flex: 0 0 50%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .kc-city-stat {
        flex: 0 0 33.333%;
    }
}

@media (min-width: 992px) {
    .kc-city-stat {
        flex: 0 0 25%;
    }
}

.kc-city-stat-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.kc-city-stat-value {
    font-size: 1.1em;
}

/* City Map Link */
.kc-city-map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.kc-city-map-link:hover {
    background-color: #e0e0e0;
}

/* City Links */
.kc-city-website {
    display: block;
    margin-top: 10px;
}

/* City Image */
.kc-city-featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* City Content */
.kc-city-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Weather Section - Placeholder for future implementation */
.kc-city-weather {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.kc-city-weather-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.kc-weather-loading {
    font-style: italic;
    color: #666;
}