﻿@charset "utf-8";
/* CSS Document */

/* ####################### GENERAL STYLES  MOBILE  ########################## */
* {
    margin: 0;
    padding: 0;
}


body {
    width: 100%;
    box-sizing: border-box;
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-attachment:fixed;
    background-size:cover;
    text-align: right;
	margin:0px;
	padding:0px;
	font-size:100%;
	font-style: normal;
	color:#f1f1f1;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    display: block;
    width: 100%;
    background: #f1f1f1;
    opacity: 0.3;
    text-align: center;
    height: 220px;
    margin: 0em auto;
    padding: 0em;
}

.title {
    font-family: 'Italiana', serif;
    font-size: 1.6em;
    line-height: 1.2em;
    color: #fff;
    margin-right: 20px;
    letter-spacing: 1px;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 40px;
}

.subtitle {
    font-family: 'Italiana', serif;
    font-size: 1em;
    line-height: 1.2em;
    margin-right: 20px;
    color: #fff;
    letter-spacing: 1px;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 110px;
}

#main {
    display: block;
    height: auto;
    margin: 30px auto;
    text-align: center;
    padding: 20px;
    background: #5a565c;
    opacity: 0.9;
}

.menu_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.menu_item_block {
    margin: 10px;
    width: 240px;
    border-radius: 3px;
    box-shadow: 2px 2px 5px #494c55;
    background-color: #f1f1f1;
    transition: transform .2s;
}

.menu_item_block:hover {
    transform: scale(1.1);
}

.menu_item_title {
    height: 105px;
    background-color: #2e1640; /*fad55c*/
    padding: 65px 8px 0px 8px;
    border-radius: 2px;
    font-family: 'Italiana', serif;
    color: #f1f1f1;
    font-size: 1.4em;
    line-height: 1em;
    letter-spacing: 0.8px;
}

.menu_item_img {
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.printart_bg {
    background-image: url(../img/hearts_icon.png);
}


.menu_item_detail {
    display: none;
    height: 50px;
    opacity: 0.8;
    border-radius: 2px;
    padding: 0px 5px;
    background-color: #413e3d;
    color: #f1f1f1;
    font-weight: 10;
    font-family: 'Quicksand', sans-serif;
    font-size: 1em;
    line-height: 50px;
    vertical-align: middle;
}

.menu_item_block a {
    text-decoration: none;
    color: #f1f1f1;
}

    .menu_item_block a:hover {
        text-decoration: none;
        color: #4b0f2e;
    }

/*---------------------- Single Pages Styles ---------------------*/

.title1 {
    margin: 20px 0 60px 0;
    color: #f1f1f1;
    font-family: 'Italiana', serif;
    font-size: 1.4em;
    letter-spacing: 0.8px;
}

.audio_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}

.audio_file {
    flex-grow: 1;
}

.audio_title {
    flex-grow: 1;
    margin: 10px auto;
    color: #f1f1f1;
    font-size: 1.1em;
    letter-spacing: 0.8px;
}

/* ersetzt #main */
#single_page {
    display: block;
    align-content: center;
    margin: 30px auto;
    text-align: center;
    padding: 20px;
    background: #4a4343;
    opacity: 0.95;
}

/* ersetzt .menu_flex */
.flex_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 0 0;
}

.info_copyright {
    margin-top: 40px;
    font-size: 0.7em;
    font-weight: 200;
}

.footnote {
    text-align: left;
    font-size: 0.7em;
    padding: 40px 5px 0px 5px;
}

/* -------------------- small Menu Items ------------------------*/
.small_menu_wrapper {
    position: absolute;
    top: 130px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.small_menu_item {
    margin: 5px;
    width: 80px;
    height: 25px;
    border-radius: 1.5px;
    box-shadow: 2px 2px 5px #494c55;
    background-color: #2e1640;
    text-align: center;
    padding: 10px 0 0 0;
    font-family: 'Italiana', serif;
    color: #f1f1f1;
    font-size: 1em;
    line-height: 1em;
    letter-spacing: 0.8px;
    transition: transform .2s;
}

    .small_menu_item:hover {
        transform: scale(1.1);
    }

    .small_menu_item a {
        text-decoration: none;
        color: #f1f1f1;
    }

    .small_menu_item a:hover {
        text-decoration: none;
        color: #f1f1f1;
    }

/*---------------------- Gallery items styles ------------------ */

.gallery_title {
    color: #f1f1f1;
    font-size: 1em;
    font-weight: 400;
}

/* ersetzt .menu_item_block */
.sample_item_block {
    flex-wrap: wrap;
    margin: 10px;
    border-radius: 3px;
    box-shadow: 2px 2px 5px #494c55;
    background-color: #f1f1f1;
    transition: transform .2s;
}

    .sample_item_block:hover {
        opacity: 0.6;
    }

.sample_img:hover {
    cursor: pointer;
}

/* ersetzt .menu_item_detail */
.sample_detail {
    height: 22px;
    border-radius: 2px;
    padding-top: 8px;
    color: #0d0909;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9em;
    line-height: 1.1em;
}

/*---------------------- Lightbox Styles --------------------------*/

#lightbox {
    display: none;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d1610;
    opacity: 1;
    text-align: center;
}

    #lightbox p {
        text-align: right;
        color: #fff;
        margin: 20px 20px;
        font-size: 12px;
    }

    #lightbox img {
        margin-top: 50px;
        width: 300px;
    }

    #painting img, #photos img {
        margin-top: 100px;
        width: 300px;
    }


/*------------------------- Footer --------------------- */

footer {
	display: block;
    height: 20em;
    background: #2e1640;
    opacity: 0.6;
    color: #fff;
	text-align: center;
	margin: 0 auto;
	padding: 40px 0 0 0;
}

.li_footer {
	list-style: none;
	display: block;
}

.li_footer a {
	color:#fff;
	text-decoration: underline;
}

.li_footer a:hover {
    text-decoration: underline;
    color: #23252b;
}

.impressum {
    padding: 20px 5px;
    color: #23252b;
}

.impressum a {
    color: #23252b;
    text-decoration: underline;
}


/* ################################# RESPONSIVE STYLES ##################### */

/* ################################# > 300 ##################### */

@media only screen and (min-width:300px) {

    .subtitle {
        top: 70px;
    }

    header {
        height: 170px;
    }

    .small_menu_wrapper {
        flex-wrap: nowrap;
    }

}

/* ################################# > 485 ##################### */

@media only screen and (min-width:485px) {

    

    .menu_item_block {
        margin: 20px;
    }

    #painting img, #photos img {
        margin-top: 100px;
        width: 500px;
    }

    .audio_title {
        text-align: right;
        padding-right: 15px;
    }

    .audio_file {
        text-align: left;
        padding-left: 15px;
    }

    

}

/* ################################# > 525 ##################### */

@media only screen and (min-width:525px) {

    header {
        height: 220px;
    }

    .small_menu_wrapper {
        top: 175px;
    }

    .small_menu_item {
        margin: 10px;
        width: 120px;
        height: 25px;
    }

    .title {
        font-size: 2em;
        line-height: 1.2em;
    }

    .subtitle {
        font-size: 1.2em;
        line-height: 1.2em;
        top: 80px;
    }

    .menu_item_block {
        width: 260px;
    }

    .menu_item_detail {
        display: block;
    }

    .footnote {
        width: 80%;
        margin: 0 auto;
    }

}


/* ################################# > 769 ##################### */

@media only screen and (min-width:769px) {

    .small_menu_wrapper {
        top: 165px;
    }

    .small_menu_item {
        margin: 15px;
        width: 140px;
        height: 30px;
        font-size: 1.2em;
        line-height: 1.2em;
        letter-spacing: 0.9px;
    }


    .menu_flex, .flex_wrapper {
        flex-direction: row;
    }


    .title {
        font-size: 2.4em;
        line-height: 1.2em;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.2em;
        line-height: 1.2em;
        letter-spacing: 1px;
        top: 90px;
    }

    #photos img {
        width: 800px;
        margin-top: 60px;
    }

    #painting img {
        width: 800px;
        height: 800px;
        margin: 0 0 40px 0;
    }


}

/* ################################# > 1000 ##################### */

@media only screen and (min-width:1000px) {


}

/* ################################# > 1200 ##################### */

@media only screen and (min-width:1200px) {

    .menu_item_block {
        width: 320px;
    }
}
