:root {
    font-family: "Familjen Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    /* font-family: "Inter", sans-serif; */
    font-size: 3rem;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

p {
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
}

html,
body,
main {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;

}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.logo-underline {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            #d6b36a,
            transparent);
}

.logo-underline::after {
    content: "";
    position: absolute;
    inset: -6px -20px;
    background: radial-gradient(ellipse at center,
            rgba(214, 179, 106, 0.6),
            transparent 50%);
    filter: blur(6px);
    pointer-events: none;
}


.content-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background-image: url('/assets/bg.png');
    background-position: center;
    background-size: cover;
    position: relative;
    gap: 20px;

}

.content-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.65) 100%);

    z-index: 2;
    pointer-events: none;
}

.main-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.blur-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
    background-color: #121212c0;
}

.background-shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100svh;
    width: 70vw;
    z-index: 3;
    color: #000000b0;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: 100%;
    z-index: 4;
    justify-content: center;
    color: #dfe0dc;
    gap: 10px;
}

.content {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-card {
    z-index: 2;
    font-family: "Familjen Grotesk", sans-serif;
    background-color: #0b0b0b5d;

    padding: 0 0 2rem 0;
    border-radius: 12px;
    width: 100%;

}

.mail-ico {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-info {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 0.5rem;
}

.contact-card>h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.contact-card>p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.email {
    color: #dfe0dc;
    cursor: pointer;
}


@media only screen and (max-width: 600px) {

    .background-shape {
        opacity: 0;
    }

    .content>h1 {
        font-size: 2.5rem;
    }

    .content>p {
        font-size: 1rem;
    }

    .form-container {
        width: 80%;
    }

}