/* ============================ */
/* PROJECT DETAIL PAGE          */
/* ============================ */


/* HERO IMAGE */
.project-hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(70%);
}



/* PROJECT HEADER SECTION */

.project-info {
    padding-top: 140px;
    padding-bottom: 60px;
}

.project-text h2 {
    color: #b69a74;
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.short-info {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.project-description {
    max-width: 700px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;
}



/* GALLERY SECTION */

.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 100px;
}

.project-gallery img {
    width: 100%;
    border-radius: 2px;
    filter: brightness(75%);
    transition: 0.4s ease;
}

.project-gallery img:hover {
    filter: brightness(55%);
    transform: scale(1.01);
}



/* LONG TEXT */

.project-long-text {
    margin-bottom: 140px;
}

.project-long-text p {
    max-width: 750px;
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.9;
}
