@font-face {
    font-family: synonym;
    src: url('/Synonym-Light.woff') format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: synonym;
    src: url('/Synonym-Medium.woff') format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: synonym;
    src: url('/Synonym-Regular.woff') format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: synonym;
    src: url('/Synonym-Semibold.woff') format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: synonym;
    src: url('/Synonym-Bold.woff') format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: synonym;
    src: url('/Synonym-Extralight.woff') format("woff");
    font-weight: 200;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "synonym";
    color: white;
    background-color: #131311;
    overflow-x: hidden;
}

h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 95%;
    letter-spacing: -2.5px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.top-bar .logo {
    height: 45px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;

    position:relative;
    height: 100vh;
    min-height: 900px;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    gap: 64px;
    padding: 0 64px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; left:0; right:0; bottom:0 */

    background-image: url("/images/background-vector.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 75%;

    opacity: 0.5; /* 👈 control background opacity here */

    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.form-wrapper {
    width: 100%;
    flex: 1;
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #1c1c1a;
    border: 1px solid #2a2a28;
    padding: 14px 16px;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6; /* subtle blue */
}

.contact-form button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #2563eb;
}


.content-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 24px;
    width: 100%;
    flex: 1;
    max-width: 500px;
}

.content-wrapper p {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
    letter-spacing: -0.5px;
    max-width: 500px;
}

.content-wrapper .blue-text {
    color: #0184FF;
}

.socials-wrapper {
    display: flex;
    gap: 16px;
}



@media (max-width: 1210px) {
    .content-wrapper h1 {
        font-size: 56px;
    }
}

@media (max-width: 1000px) {
    .top-bar .logo {
        height: 35px;
    }

    .top-bar {
        padding: 15px 0;
        margin: auto;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
        height: auto;
        min-height: auto;
        padding: 120px 24px 0 24px;
        margin: auto;
    }

    .hero::before {
        background-size: 100%;
        background-position: 50% 50%;
        opacity: 0.5
    }

    .form-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .content-wrapper h1 {
        font-size: 56px;
        width: 100%
    }
}