:root {

    /* Colors: */
    --sand: #F8D293;
    --darkerGray: #222226;
    --gray: #838386;
    --aqua: #488c97;
    --background: #0f0f1a;
}    

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

body, html {
    margin: 0;
    padding: 0;

    width: 100vw;

    background-color: var(--background);

    display: flex;
    flex-direction: column;
    
    overflow-x: hidden;

}

.titleScreen {
    height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-image: url(../media/images/media-003-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    z-index: 1;

    display: flex;
    width: 100%;
}

.header > * {
    flex: 1 0 50%;
}

.logo img{
    width: 50%;
    position: sticky;
    margin: 25px;
    top: 0;
}

.links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: right;
    margin-top: 25px;
}

.links a {
    margin: 0 .5rem;
    padding: 10px;

    text-decoration: none;
    color: var(--aqua);
    font-family: "spartan";
    font-weight: 400;
    font-size: 1.2rem;

    transition: all ease 0.2s;
}
.links a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--aqua);
}

.contentScreen {
    text-align: center;
    color: white;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.contentScreen > * {
    flex: 1 1 100%;
}

.title {
    width: 100vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 15vh;


    text-align: center;

}

.title h1{
    font-family: "spectral sc";
    font-size: 7rem;
    font-weight: 400;
    color: var(--aqua);
    margin: 0;
}
.title p {
    text-align: center;
    width: 50vw;

    margin: 0;
    margin-top: -2vh;

    color: white;

    font-family: "spartan";
    font-size: 400;
    line-height: 1.5rem;
}

/* -Spacer- */

.reserv-spacer {
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.reserv-spacer h1 {
    font-family: "spectral sc";
    font-weight: 400;
    font-size: 3rem;
    margin: 0;
    color: var(--aqua);
}
.reserv-spacer p {
    text-align: center;
    color: white;
    font-family: "spartan";
    font-weight: 400;
}
.reserv-spacer a {
    margin-top: 5px;
    padding: 1.2vh 2.5vh;
    background-color: var(--aqua);
    text-decoration: none;
    font-family: "spartan";
    font-weight: 400;
    color: var(--background);
    letter-spacing: 1px;
    border: 1.5px solid var(--aqua);

    transition: all ease 0.2s;
}
.reserv-spacer a:hover {
    color: var(--aqua);
    background-color: transparent;
    letter-spacing: 2px;
}


.cont-spacer {
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-spacer > * {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    font-family: "spartan";
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.phone img{
    width: 5vw;
}
.mail img{
    width: 7vw;
}

.title-spacer h1{
    text-align: center;
    color: var(--aqua);

    font-family: "spectral sc";
    font-size: 3rem;
    font-weight: 400;

    margin-bottom: 1vh;
    letter-spacing: 2px;
}
.title-spacer p {
    text-align: center;

    color: white;
    letter-spacing: 2px;

    font-family: "spartan";
    font-weight: 400;
    margin: 0;
    margin-bottom: 7vh;
}

/* -form- */
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form input {
    width: 40vw;
    height: 5vh;
    border: 2px solid var(--sand);
    background-color: var(--background);
    margin-top: 2vh;
    margin-bottom: 2vh;
    outline: none;
    color: white;
    padding-left: 10px;
    font-family: Arial, Helvetica, sans-serif;

    transition: all ease 0.2s;

}
form input:focus {
    transform: scale(1.02);
}

form p {
    text-align: left;
}

form textarea {
    width: 40vw;
    height: 15vh;
    background-color: var(--background);
    border: 2px solid var(--sand);
    resize: none;
    margin-top: 2vh;
    outline: none;

    color: white;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
}

form input::placeholder {
    font-family: "spartan";
}
form input:-ms-input-placeholder {
    font-family: "spartan";
}
form input::-webkit-input-placeholder {
    font-family: "spartan";
}

form textarea::placeholder {
    font-size: 1rem;
    font-family: "spartan";
}
form textarea::-moz-placeholder {
    font-size: 1rem;

    font-family: "spartan";
}
form textarea::-webkit-input-placeholder {
    font-size: 1rem;

    font-family: "spartan";
}

#submit {
    width: 25vw;
    background-color: var(--sand);
    color: var(--background);
    border: 2px solid var(--sand);

    font-family: "spartan";
    font-weight: 200;
    font-size: 1.5rem;

    cursor: pointer;

    transition: all ease 0.2s;
}

#submit:hover {
    transform: scale(1.1);
    background-color: var(--background);
    color: var(--sand);
}


.media {
    background-image: url("../media/images/media-002.jpeg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80vw;
    height: 80vh;
    margin-right: 5vw;
}

.form {
    width: 80vw;
    height: 80vh;
}

/* -Footer- */

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10vh;
}

footer > * {
    flex:  1 1 50%;
}

.Fcontent1 {
   display: flex;
   justify-content: flex-start;
   text-align: left;
   margin-left: 25px;
   margin-bottom: 3vh;
}

.Fcontent2 {
   display: flex;
   justify-content: flex-end;
   text-align: right;
   margin-right: 25px;
   margin-bottom: 3vh;
}

.Fcontent1 a, .Fcontent2 a {
    color: var(--gray);
    text-decoration: none;
    font-family: "spartan";
    font-weight: 200;

} 

.Fcontent1 p, .Fcontent2 p {
   color: var(--gray);
   font-family: "spartan";
   font-weight: 200;
}

@media only screen and (max-width: 1200px) {
    .links a {
        font-size: 1.3vw;
    }
  }

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

    #menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        color: var(--aqua);

    }
    #atag {
        margin-left: 9vw;
        margin-top: 2vh;
        text-decoration: none;
        font-size: 4vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .titleScreen {
        background-size: 335%;
        background-position: top;
    }

    .links {
        display: none;
    }

    .logo img {
        width: 50%;
    }

    .title h1 {
        font-size: 4rem;
    }
    .title p {
        width: 90vw;
        font-size: .9rem;
    }

    .mail img {
        width: 70px;
        height: 70px;
    }
    .phone img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .mail p {
        font-size: .7rem;
    }
    .phone p {
        font-size: .7rem;
    }

    .media {
        display: none;
    }

    .reserv-spacer {
        height: 35vh;
    }

    form input, form textarea, #submit {
        width: 90vw;
        border-radius: 0;
    }

    .Fcontent1 a, .Fcontent2 a, .Fcontent1 p, .Fcontent2 p {
        font-size: .7rem;
    }

}

::-webkit-scrollbar {
    display: none;
}