/* --- Single Project - Layout Styles --- */
.project-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.project-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.project-hero .container {
    position: relative;
    z-index: 2;
    padding: 50px 15px;
}

.project-hero .status-badge {
    display: inline-block;
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.project-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-top: 10px;
}

.project-nav-sticky {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom:30px;
}

.project-tabs-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
}

.project-tab-link {
    padding: 15px 20px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.project-tab-link.is-active, .project-tab-link:hover {
    color: #111;
    border-bottom-color: #E9B211;
}
