/* GENEL */
body {
    font-family: 'Jost', sans-serif;
    background: #f5f7fb;
    margin: 0;
}

/* HERO */
.hero {
    padding: 80px 20px 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 10px;
}

/* CONTAINER */
.projects .container {
    max-width: 1100px;
}

/* KART */
.image-wrapper {
    transition: all 0.3s ease;
}

/* RESİM KUTUSU */
.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
}

    /* RESİM */
    .img-box img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }

    /* ZOOM */
    .img-box:hover img {
        transform: scale(1.08);
    }

/* KART HOVER */
.image-wrapper:hover {
    transform: translateY(-10px);
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    opacity: 0;
    transition: 0.3s;
}

.img-box:hover .overlay {
    opacity: 1;
}

/* MOBİL */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* FOOTER */
.footer {
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
    padding: 25px 10px;
    background: transparent;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #8a8f98;
    letter-spacing: 0.3px;
}
