@import "css/grid.css";

*{
    box-sizing: border-box;
}

body, html {
    font-family: 'Montserrat',helvetica;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
h1{
    font-size: 6em;
    margin:0;
    padding:0;
    text-align: center;
    text-transform: uppercase;
}

a {
    color: #fff;
    transition: all 300ms;
}

a:hover {
    opacity: 0.7;
}

h3 {
    text-align: center;
}

#bg {
    background-image: url('imgs/bg.jpg');
    background-size: cover;
    position: fixed;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
}

#logo {
    display: table;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
    width: 80%;
}

.imprint {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 35px);
    text-align: center;
}
.imprint > div {
    max-width: 600px;
}

img {
    max-width: 100%;
}

.roadmap {
    text-align: center;
}

#menu {
    position: fixed;
    display: flex;
    margin: 20px auto;
    text-align: center;
    /*justify-content: center;*/
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 10px;
}

#menu li {
   list-style: none;
}

#menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    text-transform: uppercase;
}

#menu li.active a, #menu li a:hover{
    opacity: 0.7;
}



/* Centered texts in each section
* --------------------------------------- */
#section1{
    background-image: url('imgs/all_charts.png');
    background-size: cover;
    background-position: center;
}

#section2 h2 {
    text-align: center;
}


/* Backgrounds will cover all the section
* --------------------------------------- */
.section{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide{
    align-items: center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.slide img {
    display: table;
    margin: 0 auto;
}


/* Bottom menu
* --------------------------------------- */
#infoMenu li a {
    color: #fff;
}

#sightseeing_email {
    display: flex;
    flex-direction: column;
}

input, textarea {
    border: none;
    font-family: 'Montserrat';
    padding: 10px;
    margin: 10px 0;
}

textarea {
    height: 100px;
}


.button {
    background-color: #fff;
    color: #000;
    align-self: flex-start;
    padding: 10px 20px;
}

.button:hover {
    opacity: 0.7;
}

.email_icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

#email_icon {
    max-width: 200px;
    text-align: center;
    width: 80%;
}

.email_sent {
    font-size: 2rem;
    font-weight: bold;
    color: darkseagreen;
}

.error {
    color: red;
    font-size: 0.8rem;
}

.email_error {
    font-size: 2rem;
    font-weight: bold;
    color: red;
}

#sightseeing_title {
    text-align: left;
}

footer {
    background-color: #587e54;
    bottom: 0;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    height: 35px;
    position:fixed;
    width: 100%;
}

footer nav {
    align-items: center;
    display: flex;
}

footer nav a {
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
}


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

    .row {
        flex-wrap: wrap;
    }

    [class ^='col-'] {
        width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

    #fp-nav {
        top: 110px;
    }

    #menu {
        justify-content: center;
    }

    .fp-controlArrow.fp-prev {
        border-width: 20px 15px 20px 0;
    }
    .fp-controlArrow.fp-next {
        border-width: 20px 0px 20px 15px;
    }

    footer {
        justify-content: center;
    }

}