/************************************************/
/* General */
/************************************************/
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
}

body {
    position: relative;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5; /* 24px */
    background: white;
    color: #3a3a3a;
}

p {
    text-align: justify;
    margin: 0 0 24px; /* 24px */
}

a, a:hover, a:focus {
    color: #2C3E50;
    text-decoration: none;
    outline-width: 0;
}

img {
    max-width: 100%;
}


/************************************************/
/* Header */
/************************************************/
header {
    padding: 0;
    position: fixed;
    top: 0;
    background: #fff;
    width: 100%;
    transition: all .3s ease-in-out;
    box-shadow: 0 1px 1px 1px rgba(0,0,0,.18);
    z-index: 2;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
}

nav ul li {
    line-height: 120px;
    transition: all .3s ease-in-out;
}

nav ul li a {
    display: block;
    padding: 0 15px;
    margin-left: 10px;
    height: 120px;
    border-top: 5px solid white;
    transition: all .3s ease-in-out;
}

nav ul li a:hover, nav ul li a:focus {
    border-color: #6DBCDB;
}

nav ul li.active a, nav ul li a:active  {
    border-color: #FC4349;
}

#logo {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
}

#logo img {
    max-height: 130px;
    transition: all .3s ease-in-out;
}

header.shrink #logo img {
    max-height: 95px;
    margin-left: 50px;
}

header.shrink nav ul li a {
    line-height: 80px;
    height: 80px;
    border-top-width: 3px;
}


#reise {
    margin-top: 80px;
}

/* Hero
 * --------------------------- */

.hero {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    background: rgba(44,62,80,.7);
}

.hero-content {
    text-align: center;
    max-width: 80%;
    mix-blend-mode: screen;
}

.parallax.travel .hero-content {
    margin-top:-300px;
}

.parallax.wedding .hero-content {
    margin-top:100px;
}

.hero.is_mobile {
    justify-content: flex-end;
    height: 600px;
}
.hero.is_mobile .hero-content {
    margin-bottom: 100px;
}

.hero.is_mobile.travel {
    background:  linear-gradient(rgba(44,62,80,.5), rgba(44,62,80,.6)), url("img/travel_hero_mobile.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
}

.hero.is_mobile.wedding {
    background:  linear-gradient(rgba(44,62,80,.5), rgba(44,62,80,.5)), url("img/wedding_hero_mobile.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content a {
    display: block;
    font-family: 'Oleo Script Swash Caps', cursive;
    border: 0px solid white;
    padding: 25px 25px 50px;
    background: url("img/arrow.png") no-repeat;
    background-position: center bottom 15px;
    font-size: 40px;
    line-height: 1.3;
    color: white;
    opacity: .6;
    transition: all .15s ease-in-out;
}

.hero-content a:hover {
    opacity: 1;
}

.message {
    padding: 240px 0;
    background: #D7DADB;
}

.message blockquote {
    margin: 0;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    color: #2C3E50;
    font-style: italic;
    font-size: 21px;
    font-weight: 200;
    line-height: 30px;
    text-align: center;
}
.message blockquote cite {
    display: block;
    font-style: normal;
    font-size: 16px;
}
.message blockquote cite:before {
    content: "- ";
}


#about {
    padding: 120px 0;
    background: #2C3E50;
    color: #D7DADB;
}

#about a {
    font-size: 40px;
    padding: 0 24px 0 0;
    color: #D7DADB;
    transition: all .15s ease-in-out;
}

#about a:hover {
    color: white;
}

#about .flex {
    display: flex;
    justify-content: space-between;
}

.social {
    width: 40%;
}

.social .links {
    text-align: center;
}

.insta {
    width: 50%;
}

    /* Footer
     * --------------------------- */
.copyright {
    padding: 10px 0;
    text-align: center;
    background: #D7DADB;
    color: #2C3E50;
    font-size: 80%;
}


/* Responsive: Portrait tablets and up */
@media screen and (max-width: 768px) {

    header .container {
        padding: 0;
    }

    #logo {
        left: 15px
    }

    header #logo img {
        max-height: 80px;
        margin: 0;
    }

    header.shrink #logo img {
        max-height: 70px;
        margin: 0;
    }

    header nav.nav {
        padding: 0 20px 0 130px;
    }

    nav ul {
        justify-content: space-between;
    }

    nav ul li a{
        margin: 0;
        line-height: 80px;
        height: 80px;
    }

    header.shrink nav ul li a {
        line-height: 60px;
        height: 60px;
        border-top-width: 2px;
    }

    #reise {
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 30px;
        padding: 10px;
        margin: 0;
    }


    #about .flex {
        display: block;
    }

    .social {
        width: 100%;
    }

    .insta {
        width: 100%;
    }


}

@media screen and (max-width: 500px) {

    #logo {
        position: relative;
        top: 0;
        transform: translateY(0%);
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    header.shrink #logo {
        height: 0;
        margin: 0;
    }

    header.shrink #logo img{
        height: 0;
    }

    header nav.nav {
        padding: 0 15px;
    }

}