/* ============================
   PROJELER SAYFASI — PREMIUM
============================ */

.projects-wrapper {
    max-width: 1300px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.projects-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0d9488;
    margin-bottom: 45px;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

/* CARD */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden; /* 🔥 KÖŞELERİN TAŞMAMASI İÇİN ZORUNLU */

    border: 4px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #0d9488, #1a237e);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* IMAGE WRAPPER - MUST FIX */
.project-img {
    width: 100%;
    height: 240px;
    overflow: hidden; /* 🔥 Taşmayı engeller */
    border-radius: 16px 16px 0 0; /* Üst köşeler karta tam oturur */
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BODY */
.project-body {
    padding: 20px 25px;
}

.project-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.project-company {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 6px;
}

.project-date {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 18px;
}

/* BUTTON */
.project-btn {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 9px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.project-btn:hover {
    background: #0d9488;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .project-img {
        height: 200px;
    }
    .projects-title {
        font-size: 2.2rem;
    }
}
