
.main-menu {
    display: table;
    position: relative;
    width: 99.5vw;
    height: 7vw;
    box-sizing: border-box;
    margin-bottom: -7vw;
    z-index: 10;
}

.main-menu > ul {
    list-style-type: none;
    display: table-row;
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 2.3vw;
    font-family: "RobotoCondensed";
    font-weight: bold;
}

.main-menu > ul > li {
    display: table-cell;
    padding: 2vw 0 0 0;
    text-align: center;
}

.main-menu > ul > li > a {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 3px black;
    background-color:  rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px 7px rgba(255, 255, 255, 0);
    transition-property: background-color, box-shadow;
    transition-duration: 0.4s;
}

.main-menu > ul > li > a:hover, .main-menu > ul > li > a:focus {
    text-decoration: underline;
    text-shadow: 0 0 1px black;
    background-color:  rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
}

.main-menu .mobile-menu-button {
    position: fixed;
    top: 2vw;
    right: 2vw;
}

.main-slider-header {
    height: 7vw;
    z-index: 5;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid black;
    background-color: #777777;
}

.main-slider-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 12;
    opacity: 0.3;
}

.main-slider-header .slider-image-item {
    filter: blur(0.8vw);
}

.main-title {
    position: relative;
    height: 40vw;
    margin-bottom: -40vw;
    z-index: 3;
}

.main-title-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px #000099;
    font-family: "Whitin-CondensedBlack";
    font-weight: bold;
}

.main-title-content h1 {
    font-size: 6vw;
    margin-bottom: 0;
}

.main-title-content p {
    font-size: 5vw;
    margin-top: 1vw;
    margin-bottom: 0;
}

.main-title-content-box {
    position: relative;
}

.main-title-content-text {
    position: relative;
    z-index: 10;
}

.main-title-content-background {
    position: absolute;
    top: 1.3vw;
    left: 0;
    width: 100%;
    height: calc( 100% - 2vw );
    z-index: 5;
    border-radius: 0.2em;
    background-color: rgba(0, 0, 0, 0.5);
    filter: blur(0.8vw);
}

.main-slider-main {
    /*height: 50vw;*/
    height: 66vw; /* FIXME temporary */
    z-index: 2;
    background-color: black;
    box-shadow: 0 4vh 4vh rgba(0, 0, 0, 0.4);
}

.main-welcome {
    margin: 0;
    overflow: hidden;
    padding: 5vw 12vw 12vw 10vw;
    /*background-color: #FFF5BB;*/
    background-color: #FFFCD9; /* !! */
    color: #61554A;
    font-size: 1.8vw;
    border-bottom: 1px solid #777755;
}

.main-welcome h2 {
    text-align: center;
}

.main-welcome + .curtain-next-placeholder {
    border-bottom: 1px solid #777755;
    background-color: #FFF5BB;
    color: #61554A;
}

.main-three-col-articles {
    margin: -7vw auto 0 auto;
    position: relative;
    z-index: 20;
}


@media screen and (orientation: portrait) {

    .main-welcome {
        font-size: 3vw !important;
    }
    
    .main-title-content h1 {
        font-size: 6vw !important;
    }
    
    .main-title-content p {
        font-size: 4vw !important;
    }
    
}

@media screen and (orientation: portrait) and (max-width: 500px) {

    .main-welcome {
        font-size: 12px !important;
    }
    
    .main-title-content h1 {
        font-size: 24px !important;
    }
    
    .main-title-content p {
        font-size: 16px !important;
    }
    
}

@media screen and ((max-width: 600px) or (orientation: portrait)) {
    
    .main-menu {
        display: block;
        z-index: 110;
    }
    
    .main-welcome {
        padding-top: 5vw;
        font-size: 12px;
    }
    
    .main-title-content h1 {
        font-size: 35px;
        margin-bottom: 3vw;
    }

    .main-title-content p {
        font-size: 27px;
        margin: 0;
    }

    .main-slider-main {
        box-shadow: none;
    }

}

@media only screen and (max-width: 400px) {
    
    .main-title {
        height: 45vw;
        margin-bottom: -45vw;
    }
    
    .main-three-col-articles {
        margin: 10vw;
    }
    
}
