@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@500&family=Roboto:wght@300;400&display=swap');


/* FONTS
font-family: 'Bebas Neue', sans-serif;
font-family: 'Dancing Script', sans-serif;
font-family: 'Roboto', sans-serif;
*/

body {
    margin: 0;
}

.page {
    background-color: #ffffff;
    width: 100%;
    //height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    justify-content: center;
    align-items: center;
}


.section {
    //background-color: palevioletred;
    width: 100%;
}

.navHolder {
    height: 50px;
    width: 100%;
}
.nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.24);
    height: 50px;
    align-items: center;
    width: 100%;
    background-color: #fff;
    z-index: 50;
}
.nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
}
.nav .option {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #333;
    font-size: 18pt;
    display: flex;
    margin: 5px 15px 5px 15px;
    //background-color: #ddd;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.1s ease-in-out;
}
@media (hover: hover) {    
    .nav .option:hover {
        background-color: #ddd;
    }
}
@media (max-width: 500px) {
    .nav .option {
        font-size: 12pt;
    }
}


.section.about {
    padding-top: 50px;
    //background-color: aquamarine;
    display: inline-flex;
    width: 900px;
    max-width: calc(100% - 25px);
    color: #333;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14);
    align-items: center;
    flex-direction: column;
}
.section.about .title {
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 38pt;
    margin-top: 25px;
}
.section.about .content {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14pt;
    margin-top: 25px;
    text-align: justify;
}

.section.works {
    //margin-top: 100px;
    padding-top: 50px;
    //background-color: aquamarine;
    //min-height: 100vh;
    display: inline-flex;
    //width: 900px;
    width: calc(100% - 50px);
    max-width: 100%;
    color: #333;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14);
    align-items: center;
    flex-direction: column;
}
.section.works .title {
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 38pt;
    margin-top: 25px;
}
.worksGallery {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    //justify-content: center;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
}
.worksGallery .item {
    display: inline-flex;
    width: 250px;
    height: 250px;
    margin: 5px;
}
@media (max-width: 800px) {
    .worksGallery .item {
        width: 150px;
        height: 150px;
    }
}
@media (hover: hover) {
    .worksGallery .item:hover {
        opacity: 0.5;
    }
}

.section.pricing {
    //margin-top: 100px;
    padding-top: 50px;
    //background-color: aquamarine;
    display: inline-flex;
    width: 900px;
    max-width: 100%;
    color: #333;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14);
    align-items: center;
    flex-direction: column;
}
.section.pricing .title {
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 38pt;
    margin-top: 25px;
}
.section.pricing .content {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14pt;
    margin-top: 25px;
    text-align: justify;
}

.section.contact {
    margin-top: 100px;
    padding-top: 50px;
    background-color: rgb(152 232 188);
    display: inline-flex;
    width: 900px;
    max-width: calc(100% - 25px);
    color: #333;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14);
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    padding-bottom: 50px;
    //color: #fff;
}
.section.contact .title {
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 38pt;
    margin-top: 25px;
}
.section.contact .content {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14pt;
    margin-top: 25px;
    text-align: justify;
}

.section.splash {
    background-color: rgb(152 232 188);
    display: inline-flex;
    min-height: 100vh;
    width: calc(100% - 200px);
    padding: 0 100px 0 100px;
    flex-direction: row;
    //justify-content: center;
    align-items: stretch;
    color: #fff;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14);
    height: 100vh;
    overflow: hidden;
}
.section.splash .titles {
    flex-grow: 1;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.section.splash .title {
    font-family: 'Dancing Script', sans-serif;
    font-size: 72pt;
}
.section.splash .subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 28pt;
    font-weight: 400;
}
.lissySelf {
    display: inline-flex;
    height: 100%;
    max-width: 100%;
}



/* portrait */
@media (orientation: portrait) {
    .section.splash {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    .lissySelf {
        height: 1000px;
        flex-grow: 0;
        order: 2;
    }
    .section.splash .titles {
        flex-shrink: 0;
        flex-grow: 0;
        height: 400px;
        order: 1;
    }
}
@media (orientation: portrait) and (max-width: 600px) {
    .section.splash .titles {
        height: 200px;
    }
    .section.splash .title {
    font-size: 48pt;
    }
    .section.splash .subtitle {
        font-size: 18pt;
    }
}
@media (orientation: portrait) and (max-width: 400px) {
    .section.splash .title {
        font-size: 32pt;
    }
    .section.splash .subtitle {
        font-size: 24pt;
    }
}

/* landscape */
@media (orientation: landscape) and (max-width: 950px) {
    .section.splash {
        padding: 0;
        width: 100%;
    }
}

@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0px);
    }
}


.downReminder {
    position: fixed;
    bottom: 25px;
    height: 25px;
    left: 50vw;
    transform: translateX(-50%);
    animation-duration: 2s;
    animation-iteration-count: infinite;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation-name: bounce;
}
.downReminder.show {
    opacity: 1;
}



/* Utilities */



.viewer .blocker {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0008;
    display: none;
}
.viewer.show .blocker {
    display: flex;
}
.viewer .window {
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translateX(-50%) translateY(-50%);
/*    background-color: #fff;*/
    display: none;
    flex-direction: column;
    color: #ffffff;
    
    max-height: calc(100% - 25px);
    max-width: calc(100% - 25px);
    
    //height: 400px;
    width: 800px;
}
.viewer.show .window {
    display: flex;
}
.viewer .window .title {
    /height: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400px;
    font-size: 24pt;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-between;
}
.viewer .window .title .close {
    //font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
}
.viewer .window .img {
    max-width: 100%;
    max-height: 100%;
}
.viewer .window .desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400px;
    font-size: 18pt;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
/*    padding: 5px 10px 5px 10px;*/
    padding: 5px 0px 5px 0px;
}

