:root {
    --blau-dunkel: #046f85;
    --blau-mid: #1c7cac;
    --blau-hell: #0eaece;
    --text-color: #F9F7F0;
    --second-text-color: #dbe7eb;
    --background-color: #03111a;
    --background-color2: #03111aea;
    --background-color3: #13213b;
    --color-fix: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

header {
    max-height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(0.25turn, var(--color-fix), var(--second-text-color));
}

.circle img {
    width: 150px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    font-weight: 800;
    font-size: 20px;
}

nav a {
    text-decoration: none;
    color: var(--blau-dunkel);
    padding: 0 0.15rem;
    position: relative;
    font-size: 1rem;
}

nav a:hover {
    color: var(--blau-dunkel);
}

nav a::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    background: var(--blau-dunkel);
    transition: 250ms ease-in-out;
    bottom: 0;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

.burger-menu {
    position: relative;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu img {
    width: 30px;
    height: auto;
}

.contact {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--background-color3);
}

.contact-layout-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-title-left h2{
    font-weight: 600;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-title-left hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    color: black;
    border-radius: 50px;
}

.contact-layout-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid var(--blau-mid);
}

.contact-layout-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#18B7BE,#285185);
    cursor: pointer;
}

.contact-layout-left button:hover {
    background: linear-gradient(270deg,#285185,#18B7BE);
}

.contact-image-right {
    width: 500px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
}

.footer-content {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    bottom: 0;
    width: 100%;
    height: 80px;
    color: var(--blau-dunkel);
    background-color: var(--color-fix);
    z-index: 2;
}

.footer-content a {
    text-decoration: none;
    color: var(--blau-dunkel);
    font-size: 1rem;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.icons {
    width: 26px;
}

.icons2 {
    width: 20px;
}

.copys {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.copys .c {
    width: 16px;
}

.copys h2 {
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        z-index: 1000;
        text-align: center;
        background: linear-gradient(0.25turn, var(--color-fix), var(--second-text-color));
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 20px;
    }

    .burger-menu {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }
}

@media (max-width: 1000px) {
    .contact-inputs {
        width: 80vw;
    }

    .contact-image-right {
        display: none;
    }
}

@media (max-width: 500px) {
    .footer-content {
        flex-direction: column;
    }

    .social-icons .icons {
        width: 20px;
    }
}