/* ===== PROJECT HERO ===== */
.project-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 320px;
    margin-top: -80px;
    overflow: hidden;
}

.project-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    z-index: 0;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    padding-top: 80px;
}

.project-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f0cf87;
    margin-bottom: 0.75rem;
}

.project-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    max-width: 800px;
}

/* ===== PROJECT BODY ===== */
.project-body {
    width: 90%;
    margin: 3vh auto;
    padding: 72px 64px;
    background-color: #fff;
    border-radius: 3px;
    border-top: 4px solid #0172CA;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
}

.project-back {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0172CA;
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color 0.2s ease;
}

.project-back:hover {
    color: #013365;
}

.project-placeholder {
    text-align: center;
    padding: 60px 0 40px;
}

.project-placeholder h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #013365;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.project-placeholder p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .project-hero {
        height: 45vh;
        margin-top: -64px;
    }

    .project-hero-content {
        padding-top: 64px;
    }

    .project-hero-content h1 {
        font-size: 2rem;
    }

    .project-body {
        padding: 52px 28px;
    }

    .project-placeholder h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-hero-content h1 {
        font-size: 1.6rem;
    }

    .project-body {
        padding: 40px 20px;
    }
}
