/* ===== PROJECT DETAIL ===== */

.project-detail-container {
    max-width: 900px;
    margin: auto;
    padding: 180px 40px 100px;
}

.back-link {
    display: inline-block;
    color: #8c7a68;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #b79b7d;
}

.back-link.bottom {
    margin-top: 50px;
    margin-bottom: 0;
}

.project-detail-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #3b322b;
    margin-bottom: 15px;
}

.project-tags {
    margin-bottom: 25px;
}

.project-tag {
    display: inline-block;
    background-color: #e8ddd0;
    color: #5f5448;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.project-tag.collaborative {
    background-color: #d8cfc5;
}

.project-detail-subtitle {
    color: #8c7a68;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
}

.project-gallery {
    margin-bottom: 50px;
}

.project-gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.project-details-section h2 {
    font-size: 1.5rem;
    color: #3b322b;
    margin-bottom: 15px;
    margin-top: 40px;
    font-weight: normal;
}

.project-details-section p {
    color: #5f5448;
    max-width: 700px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .project-detail-container {
        padding: 210px 25px 80px;
    }

    .project-detail-title {
        font-size: 2rem;
    }
}