/* ========================== */
/* PORTFOLIO PAGE STYLES      */
/* ========================== */

.portfolio-title {
    padding-top: 180px;
    /* Navbar fixed olduğu için boşluk bırakıyoruz */
    margin-bottom: 40px;
}

.portfolio-title h2 {
    color: #b69a74;
    font-size: 18px;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 50px;
}


/* ---- PORTFOLIO ITEM CONTAINER ---- */

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-bottom: 120px;
}


/* ---- SINGLE ITEM ---- */

.portfolio-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(70%);
    /* Wix'teki karanlık efekt */
    transition: all 0.4s ease;
}

.portfolio-item:hover img {
    filter: brightness(45%);
    transform: scale(1.02);
}


/* ---- CENTERED BIG NUMBER ---- */

.number-overlay {
    font-family: 'Courier New', Courier, monospace;
    color: #b69a74;
    font-size: 22px;
    margin-bottom: 10px;
}