/* ===== REFERANSLAR SAYFASI CSS DOSYASI ===== */

/* Sayfa Üst Boşluğu */
.sayfa-ust-bosluk {
    padding-top: 5rem;
}

/* Hero Bölümü */
.referanslar-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #f3e8ff 100%);
}

.hero-baslik-merkez {
    text-align: center;
    margin-bottom: 4rem;
}

.ana-baslik {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ana-baslik {
        font-size: 4rem;
    }
}

.hero-aciklama-merkez {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* İstatistikler */
.istatistikler-izgara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .istatistikler-izgara {
        grid-template-columns: repeat(4, 1fr);
    }
}

.istatistik-ogesi {
    text-align: center;
}

.istatistik-sayisi {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .istatistik-sayisi {
        font-size: 2.5rem;
    }
}

.istatistik-etiketi {
    color: #6b7280;
}

/* Projeler Izgara Bölümü */
.projeler-izgara-bolumu {
    padding: 6rem 0;
    background-color: white;
}

.projeler-izgara {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projeler-izgara {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projeler-izgara {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Proje Kartları */
.proje-karti {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.proje-karti:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

/* Proje Resim Alanı */
.proje-resim-alani {
    position: relative;
    overflow: hidden;
}

.proje-resmi {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proje-karti:hover .proje-resmi {
    transform: scale(1.1);
}

.proje-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proje-karti:hover .proje-overlay {
    opacity: 1;
}

.proje-aksiyonlar {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
}

.aksiyon-butonu {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1f2937;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aksiyon-butonu:hover {
    background-color: white;
}

/* Proje İçerik Alanı */
.proje-icerik {
    padding: 1.5rem;
}

.proje-ust-bilgi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.proje-yil-rozeti {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    background-color: #dbeafe;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.proje-sirket {
    font-size: 0.875rem;
    color: #6b7280;
}

.proje-baslik {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.proje-karti:hover .proje-baslik {
    color: #3b82f6;
}

.proje-aciklama {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Teknoloji Etiketleri */
.teknoloji-etiketleri {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.teknoloji-etiketi {
    font-size: 0.75rem;
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Proje Özellikleri */
.proje-ozellikler {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ozellikler-baslik {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.ozellikler-izgara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.ozellik-ogesi {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
}

.ozellik-ikonu {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #16a34a;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* CTA (Çağrı) Bölümü */
.cta-bolumu {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
}

.cta-konteyneri {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-baslik {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-baslik {
        font-size: 3rem;
    }
}

.cta-aciklama {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.cta-butonlar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-butonlar {
        flex-direction: row;
    }
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-beyaz {
    background-color: white;
    color: #1e3a8a;
}

.btn-beyaz:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cerceveli {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-cerceveli:hover {
    background-color: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .ana-baslik {
        font-size: 2.5rem;
    }
    
    .cta-baslik {
        font-size: 2rem;
    }
    
    .projeler-izgara {
        grid-template-columns: 1fr;
    }
    
    .istatistikler-izgara {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-butonlar {
        flex-direction: column;
    }
    
    .proje-aksiyonlar {
        display: none;
    }
}