:root {
    --header-height: 52px;
    --header-container-height: 51px;
    --top-line-height: 0px;
    --total-header-height: 52px;
}


/* FONT IMPORTS */
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender-Light.otf') format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender-Bold.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender-Black.otf') format('opentype');
    font-weight: 900;
}

body {
	background-image: url('/assets/img/top_shadow.png');
	background-color: #131414;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;	
    color: #c2cdcd;
    font-family: Bender,serif;
	overflow-x: hidden;	
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('/assets/img/stripes_rotated.png');
    opacity: 1; /* ajustezi intensitatea */
    z-index: 1; /* peste tot */
}

.footer-shadow {
    background-image: url('/assets/img/footer_shadow.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    height: 520px;
    pointer-events: none;
    transition: bottom .01s ease-in-out, opacity .2s ease-in-out;
    width: 100%;
    z-index: 0;
	bottom: -16.5121px;
	opacity: .6;
	position: flex;
	margin: -7px;
}
.footer-shadow {
    pointer-events: none;
}




.footer-shadow h1 {
	text-align: center;
	font-size: 15px;
	text-shadow:
        0 0 4px rgb(120 237 240 / 25%),
        0 0 10px rgb(75 159 160 / 15%);
	padding-top: 460px;
}

.project-hero {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #222;
}

/* Overlay + text */
.project-hero-overlay {
    width: 100%;
    padding: 30px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}

.project-hero-overlay h1 {
    margin: 0;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px black;
}

.project-status {
    margin-top: 5px;
    font-size: 18px;
    color: #a6e3ff;
    opacity: 0.85;
}


.project-hero {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #222;
    position: relative;
}
.project-hero .overlay {
    background: rgba(0,0,0,0.4);
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.project-hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.project-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.project-content img {
    width:100%;
    border-radius:8px;
    margin: 15px 0;
}

.back-btn {
    display: inline-block;
    padding: 12px 38px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    color: #c2cdcd;
    border-radius: 6px;
    border: 1px solid #c2cdcd;

    box-shadow:
        0 0 25px rgba(0,0,0,0.8),
        inset 0 0 16px rgba(0,0,0,0.45);

    cursor: pointer;
    position: relative;
    overflow: hidden;
	margin-left: 10px;
    transition: 0.15s ease-out;
}
