: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: 0.4; /* 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;
}


.about-wrapper {
	max-width: 900px;
	margin: 80px auto;
	padding: 20px;
}

.section-block {
	padding: 50px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-block:last-child {
	border-bottom: none;
	padding-bottom: 80px;
}

h1 {
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	margin-bottom: 35px;
	color: #e6e6e6;
}

h2 {
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	position: relative;
}

h2::after {
	content: "";
	width: 70px;
	height: 3px;
	background: linear-gradient(90deg, #9a031e, #d83f31);
	position: absolute;
	left: 0;
	bottom: -5px;
	border-radius: 3px;
}

p {
	font-size: 1.3rem;
	line-height: 1.7;
	color: #d4d4d4;
}
