/* =============================
   REFERANSLAR SAYFASI STİLİ
   ============================= */

/* Sayfa Başlığı */
.container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.container .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* ===== GRID YAPISI ===== */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    padding: 20px 0 60px 0;
    justify-items: center;
    align-items: center;
}

.ref-item {
    text-align: center;
}

.ref-item img {
    width: 160px;
    height: 90px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-item span {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #222;
    font-weight: 500;
}

/* Hover efekti (profesyonel görünüm) */
.ref-item img:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Mobil uyum */
@media (max-width: 480px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ref-item img {
        width: 120px;
        height: 70px;
    }

    .ref-item span {
        font-size: 0.85rem;
    }
}
