/* Projelerim Bölümü */
.projelerimiz-page {
    background-color: transparent;
    width: 100vw;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.projects-section-proje {
    font-family: Arial, sans-serif;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    margin-top: 20px;
    flex: 1;
}

/* Header arkaplan resmi */
.header-background {
    position: relative;
    width: 100vw;
    height: 300px;
    background: url('/images/logo/projeler.jpg') no-repeat center center/cover;
    margin-bottom: 30px;
}

.projects-section-proje h1 {
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Yapısı */
.projects-grid-proje {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Proje Kutusu */
.project-item-proje {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 230px;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-item-proje img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-item-proje:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project-item-proje:hover img {
    transform: scale(1.05);
}

/* Overlay (Üst Katman) */
.project-overlay-proje {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-overlay-proje h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.project-overlay-proje .icon-proje {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.project-item-proje:hover .icon-proje {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .projects-grid-proje {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-item-proje {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .projects-grid-proje {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .project-item-proje {
        height: 250px;
    }
    .project-overlay-proje h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .projects-grid-proje {
        grid-template-columns: 1fr;
    }
    .project-item-proje {
        height: 250px;
    }
}

/* Footer için düzenleme */
.footer {
    margin-top: auto;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}