/*=====================================
  PROJELER SAYFASI STİLLERİ - projects.css
=======================================*/

.subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Proje Filtreleri */
.project-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #2B3A64;
    color: #2B3A64;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #2B3A64;
    color: #fff;
}

/* Proje Galerisi */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #2B3A64;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #4A6FA5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2B3A64;
}