﻿* {margin: 0; padding: 0; border: 0; outline: 0;}

html {
    height: 100%;
}

body {
    font-family: 'Oswald', 'Arial', sans-serif;
    /*font-family: 'Arial', sans-serif;*/
    text-align: center;
    overflow-y: scroll;
    background: #1a1a1a;
    height: 100%;
}

svg {
    position: fixed;
    visibility:hidden;
    z-index:1;
    width: 15%;
    height: 15%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
}

.icon-preload {
    display:none;
}

a {
    color: #80bfff;
}

/*banner and title*/
.banner {
    width: 100%;
    background: #999999;
    color: black;
    padding-top: 20px;
    padding-bottom: 10px;
}

.site-title {
    font-family: 'Arizonia', 'Garamond', serif;
    /*font-family: 'Garamond';*/
    font-size: 3em;
    font-weight: 100;
    line-height: normal;
    padding-bottom: 15px;
}

@media screen and (max-width: 375px) and (orientation:portrait) {
    .site-title {
        font-size: 1.4em;
    }
}

@media screen and (min-width: 375px) and (max-width: 480px) and (orientation:portrait) {
    .site-title {
        font-size: 1.6em;
    }
}

@media screen and (min-width: 480px) and (max-width: 540px) and (orientation:portrait) {
    .site-title {
        font-size: 2em;
    }
}

@media screen and (max-height: 480px) and (orientation:landscape) {
    .site-title {
        font-size: 2em;
    }
}

/*text menu classes*/
.menu1 li {
    display: inline-block;
    width:10%;
}

/*MEDIA QUERIES FOR PORTRAIT MODE*/

/*galaxy fold*/
@media screen and (max-width: 280px) and (orientation:portrait) {
    .menu1 li {
        width: 18%;
        font-size: .6em;
    }
}

/* iphone 5/SE */
@media screen and (min-width:281px) and (max-width: 320px) and (orientation:portrait) {
    .menu1 li {
        width: 18%;
        font-size: .7em;
    }
}

/* moto G4 */
@media screen and (min-width:321px) and (max-width: 360px) and (orientation:portrait) {
    .menu1 li {
        width: 18%;
        font-size: .7em;
    }
}

/* iphone 6/7/8 */
@media screen and (min-width:361px) and (max-width: 480px) and (orientation:portrait) {
    .menu1 li {
        width: 18%;
        font-size: .8em;
    }
}

/* surface duo */
@media screen and (min-width:481px) and (max-width: 768px) and (orientation:portrait) {
    .menu1 li {
        width: 18%;
        font-size: 1em;
    }
}

/*ipad*/
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .menu1 li {
        width: 15%;
        font-size: 1.2em;
    }
}

/*ipad pro*/
@media only screen and (min-width: 1025px) and (orientation: portrait) {
    .menu1 li {
        width: 15%;
        font-size: 1.2em;
    }
}

@media screen and (max-height: 280px) and (orientation:landscape) {
    .menu1 li {
        width: 18%;
    }
}

@media screen and (min-width:481px) and (max-width: 512px) and (orientation:landscape) {
    .menu1 li {
        width: 18%;
    }
}

@media screen and (max-height: 480px) and (orientation:landscape) {
    .menu1 li {
        width: 18%;
    }
}

.menu1 li span {
    font-size: 1.3em;
    line-height: normal;
    transition-property: color;
    transition-duration: 250ms;
}

.menu1 li span:hover {
    cursor:pointer;
}

/*dynamic content div*/
#dynamic-content-container {
    width: 100%;
    color: #EEEEEE;
    margin-top: 10px;
}

/*home page styles*/
#home-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
    padding-bottom: 20px;
}

#home-image-div {
    width: 60%;
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.home-image {
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity:0;
    transition: all 2s;
    transition-timing-function: ease-out;
}

.home-image.home-image-size {
    opacity:1;
}

.home-image.home-image-color {
    transition: all 1s;
    filter: grayscale(0%);
}

.welcome {
    font-family: 'Arizonia', 'Garamond', serif;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.8em; /*1.3em;*/
}

.welcome-quote {
    font-family: 'Times New Roman';
    font-style: italic;
    font-size: .75em;
}

.welcome-quote-attrib {
    font-size: .7em;
}

@media screen and (max-width:1080px) and (orientation:landscape) {
    #home-image-div {
        width: 70%;
    }
    .welcome {
        font-size: 1.5em;
    }
}

@media screen and (min-width:1367px) and (orientation:landscape) {
    #home-image-div {
        width: 50%;
    }
}

@media screen and (max-width:800px) and (orientation:portrait) {
    #home-image-div {
        width: 90%;
    }

    .welcome {
        font-size: 1.5em;
    }
}

@media screen and (min-width:801px) and (orientation:portrait) {
    #home-image-div {
        width: 90%;
    }
}

/*section heading classes*/
.section-heading-container {
    font-size: 2em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-heading-hline {
    width: 100px;
    height: .5em;
    border-top: 1px solid #EEEEEE;
    vertical-align: bottom;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .section-heading-hline {
        display: none;
    }
}

.section-heading {
    font-family: 'Arizonia', 'Garamond', serif;
    display: inline-block;
}

/*portfolio works image menu*/
#works-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

.works-image-menu {
    margin-top: 40px;
}

    .works-image-menu li {
        width: 30%;
        list-style-type: none;
        display: inline-block;
        margin-left: 20px;
        margin-right: 20px;
    }

@media screen and (max-width: 480px) {
    .works-image-menu li {
        width: 40%;
    }
}

.works-image-menu li::after {
    font-size: 1.5em;
    content: attr(title);
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.works-image-menu li img {
    width: 100%;
    object-fit: contain;
}

.works-image-menu li:hover {
    cursor: pointer;
}

/*gallery image menu*/
#available-works-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

#archive-works-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

.gallery-image-menu {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

    .gallery-image-menu li {
        list-style-type: none;
        display: inline-block;
        margin-bottom: 25px;
        margin-left: 20px;
        margin-right: 20px;
        vertical-align: bottom;
    }

#archive-works-container .gallery-image-menu li {
    width: 10%;
}

#available-works-container .gallery-image-menu li {
    width: 20%;
}

@media screen and (max-width: 820px) {
    #archive-works-container .gallery-image-menu li {
        width: 25%;
    }

    #available-works-container .gallery-image-menu li {
        width: 25%;
    }
}

.gallery-image-menu li::after {
    font-size: 1em;
    content: attr(title);
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 10px;
}

#archive-works-container .gallery-image-menu li::after {
    font-size: 1em;
}

.gallery-image-menu li img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.gallery-image-menu li:hover {
    cursor: pointer;
}

/*styles for one painting*/
#closeup-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

#title-table {
    table-layout: fixed;
    width: 100%;
}

#title-container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

#title-slot1, #title-slot2 {
    position: absolute;
    font-size: 2.2em;
    width: 90%;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    transition-property: opacity;
    transition-duration: 750ms;
    text-align: center;
}

@media screen and (max-width: 480px) and (orientation:portrait) {
    #title-slot1, #title-slot2 {
        font-size: 1.8em;
    }

    #title-container {
        height: 3.6em;
    }
}

@media screen and (max-height: 480px) and (orientation:landscape) {
    #title-slot1, #title-slot2 {
        font-size: 2em;
    }
}

#title-slot1 {
    opacity: 1;
}

#title-slot2 {
    opacity: 0;
}

#img-table {
    width: 90%;
    table-layout: fixed;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

#left-td {
    width: auto;
    text-align: right;
    vertical-align: middle;
}

#img-container {
    position: relative;
    height: 80vh;
    width: 90%;
    vertical-align: middle;
    /*border:1px solid white;*/
}

@media screen and (max-width: 480px) and (orientation:portrait) {
    #img-container {
        height: 60vh;
    }
}

@media screen and (max-height: 480px) and (orientation:landscape) {
    #img-container {
        height: 65vh;
    }
}

#img-slot1, #img-slot2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition-property: opacity;
    transition-duration: 750ms;
}

#img-slot1 {
    opacity: 1;
}

#img-slot2 {
    opacity: 0;
}

#right-td {
    width: auto;
    text-align: left;
    vertical-align: middle;
    padding-left: 10px;
}

@media screen and (max-width: 480px) {
    #right-td {
        padding-left: 0;
    }
}

#img-details-container {
    position: relative;
    width: 80%;
    vertical-align: top;
}

#img-details-slot1, #img-details-slot2 {
    position: absolute;
    width: 80%;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    transition-property: opacity;
    transition-duration: 750ms;
}

#img-details-slot1 {
    opacity: 1;
}

#img-details-slot2 {
    opacity: 0;
}

@media screen and (max-width: 480px) and (orientation:portrait) {
    #img-details-slot1, #img-details-slot12 {
        width: 100%;
    }
}

@media screen and (max-height: 480px) and (orientation:landscape) {
    #img-details-slot1, #img-details-slot12 {
        width: 100%;
    }
}

.flower {
    font-size: 1.2em;
    margin-left: auto;
    margin-right: auto;
}

.dimensions {
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.price {
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.inspiration {
    font-size: 1.2em;
    width: 50%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    /*border:1px solid white;*/
}

@media screen and (max-width: 768px) and (orientation:portrait) {
    .inspiration {
        width: 100%;
    }
}

@media screen and (max-height: 768px) and (orientation:landscape) {
    .inspiration {
        width: 100%;
    }
}

@media screen and (max-width: 1366px) and (orientation:portrait) {
    .inspiration {
        width: 80%;
    }
}

@media screen and (max-height: 1366px) and (orientation:landscape) {
    .inspiration {
        width: 70%;
    }
}

.slideshow-icon, #close-icon {
    font-size: 2.5em;
    color: #EEEEEE;
}

@media screen and (max-width: 480px) {
    .slideshow-icon, #close-icon {
        font-size: 25px;
    }
}

.slideshow-icon:hover, #close-icon:hover {
    cursor: pointer;
}

/*event styles*/
#events-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

.events-table {
    font-size: 1.2em;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    border-collapse: collapse;
}

/*small phone*/
@media only screen and (max-width: 600px) and (orientation:portrait) {
    .events-table {
        font-size: .8em;
        width: 90%;
    }
}

@media only screen and (max-height: 600px) and (orientation:landscape) {
    .events-table {
        font-size: 1em;
        width: 90%;
    }
}

/*old ipad*/
@media only screen and (min-width: 601px) and (max-width: 1024px) and (orientation:landscape) {
    .events-table {
        font-size: 1em;
    }
}

@media only screen and (min-height: 601px) and (max-height: 1024px) and (orientation:portrait) {
    .events-table {
        font-size: .8em;
    }
}

/*new ipad*/
@media only screen and (min-height: 1080) and (orientation:portrait) {
    .events-table {
        font-size: .8em;
    }
}

@media only screen and (min-width: 1080px) and (orientation:landscape) {
    .events-table {
        font-size: 1em;
    }
}

.event-year-td {
    position: relative;
}

.event-year {
    position: relative;
    left: -18px;
    color: #666666;
    text-align: left;
}

@media only screen and (max-width: 280px) and (orientation:portrait) {
    .event-year {
        left: -10px;
    }
}

.event-text-td {
    vertical-align: middle;
    text-align: center;
    height: 100%;
    border-left: 1px solid #666666;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 280px) and (orientation:portrait) {
    .event-text-td {
        font-size: .8em;
    }
}

.event-text, .event-text-special, .event-name {
    color: #b3b3b3;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 0;
    margin-top: 0;
}

.event-name {
    color: #e6e6e6;
}

.event-text-special {
    color: #e6e6e6;
    margin-top: 10px;
}

.event-img-td {
    width: 40%;
    vertical-align: middle;
}

@media only screen and (max-width: 280px) and (orientation:portrait) {
    .event-img-td {
        width: 35%;
    }
}

.event-img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    object-fit: contain;
}

/*contact styles*/
#contact-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

#contact {
    width: 50%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#contact-img {
    float: left;
    width: 100%;
    margin-right: 20px;
    padding-bottom: 20px;
}

#contact-text {
    color: #b3b3b3;
    font-size: 1.3em;
    margin-bottom: 1em;
}

/*about styles*/
#about-container {
    width: 100%;
    transition-property: opacity;
    transition-duration: 750ms;
    opacity: 0;
}

#about-div {
    width: 60%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

#about-img {
    float: left;
    width: 100%;
    margin-right: 30px;
    margin-bottom: 20px;
}

#about-text {
    color: #b3b3b3;
    font-size: 1.3em;
    margin-bottom: 1em;
}