/* === GRID === */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* === KART === */
.city-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;

    /* YEŞİL ÇERÇEVE (resimdeki stil) */
    border: 3px solid #00d884;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    border-color: #00ffae; /* Hover'da parlayan yeşil */
}

/* === RESİM === */
.city-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* === KART İÇİ === */
.card-body {
    padding: 18px;
    text-align: left;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

/* === BUTON === */
.btn {
    display: inline-block;
    padding: 7px 14px;
    font-size: 0.88rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .2s ease;
}

.btn:hover {
    opacity: 0.85;
}

/* === BAŞLIK === */
.gradient-text {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00c6ff, #00d884);
    -webkit-background-clip: text;
    color: transparent;
}
