: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-color: #131414;
	background-image: url('/assets/img/page1.png');
    color: #c2cdcd;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-position: center;
    background-size: 102%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.5s ease-in-out, background-size 0.5s ease-in-out;
    animation: zoomCycle 5s ease-in-out infinite alternate;
    opacity: 1;
	overflow-x: hidden;

	
}

@keyframes zoomCycle {
    0% { background-size: 102%; }
    100% { background-size: 112%; }
}
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;
}

/* Contact page layout */

.contact-page {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
    font-family: "Bender", sans-serif;
}

.contact-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Two-column layout */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Cards */

.contact-info-card,
.contact-form-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid #242424;
    border-radius: 10px;
    padding: 18px 20px 20px 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.55);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 20px;
    margin-bottom: 14px;
}

/* Info list */

.info-row {
    display: flex;
    margin: 6px 0;
    font-size: 14px;
}

.info-label {
    width: 90px;
    color: #909090;
}

.info-value {
    color: #e0e0e0;
}

.info-value a,
.contact-info-card a {
    color: #81d0ff;
    text-decoration: none;
}

.info-value a:hover,
.contact-info-card a:hover {
    text-decoration: underline;
}

.info-divider {
    border: none;
    border-top: 1px solid #303030;
    margin: 14px 0;
}

.social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-list li {
    margin: 4px 0;
}

.small-note {
    margin-top: 12px;
    font-size: 12px;
    color: #777;
}

/* Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 720px) {
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }
}

.form-row label {
    font-size: 13px;
    color: #c8c8c8;
}

.form-row input,
.form-row select,
.form-row textarea {
    background: #101010;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 10px;
    color: #e0e0e0;
    font-size: 14px;
    outline: none;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #2f92ff;
    box-shadow: 0 0 0 1px rgba(47, 146, 255, 0.3);
}

/* Footer of form */

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    gap: 10px;
}

.privacy-note {
    font-size: 11px;
    color: #777;
    max-width: 65%;
}

.btn-send {
    padding: 9px 22px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, #2f92ff, #19c4ff);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.btn-send:hover {
    filter: brightness(1.05);
    box-shadow: 0 0 14px rgba(31, 163, 255, 0.5);
    transform: translateY(-1px);
}

.btn-send:active {
    transform: translateY(0);
    box-shadow: none;
}
