.project-hero {
    min-height: 85vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dark Gradient Overlay for Text Readability */
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

/* Tag Label: e.g. "Mixing Studio" */
.project-tag {
    background-color: #004793; /* Brand Blue */
    color: #fff;
    padding: 8px 16px;
    font-family: 'termina_testbold', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* --- 2. Specs Box (Technical Details) --- */
.spec-box {
    background-color: #111;
    padding: 40px;
    border-top: 4px solid #004793;
    height: 100%;
}

.spec-table {
    width: 100%;
    color: #fff;
    margin-bottom: 0;
}

.spec-table td {
    padding: 18px 0;
    border-bottom: 1px solid #333;
    font-family: sans-serif;
    font-size: 16px;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-label {
    font-family: 'termina_testbold', sans-serif;
    color: #007bff;
    width: 40%;
    font-size: 14px;
    text-transform: uppercase;
}

/* --- 3. Gallery Styles --- */
.gallery-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav button:hover {
    background: #004793;
    border-color: #004793;
}

/* --- 4. Quote Section --- */
.quote-box {
    font-family: 'termina_testmedium', sans-serif;
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.quote-author {
    color: #007bff;
    font-family: 'termina_testbold', sans-serif;
    font-size: 16px;
    margin-top: 25px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- 5. Responsive (Mobile) --- */
@media (max-width: 991px) {
    .project-hero {
        min-height: 60vh;
        padding-bottom: 3rem;
    }
    .spec-box {
        padding: 25px;
        margin-top: 40px;
    }
    .quote-box {
        font-size: 18px;
    }
}

