/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 15, 2016, 8:21:20 AM
    Author     : lweiss
*/

html {
    -webkit-text-size-adjust: 100%;
}

html, body {
    height: 100%;
    margin: 0px;
}

/* Swiper slideshow plugin override */
:root {
    --swiper-theme-color: purple;
}

/* Element styling */
h1 {
    color: teal;
    font-family: 'Calligraffitti', Arial, sans-serif;
    text-shadow: none;
    margin-bottom: 10px;
}

h2 {
    color: purple;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    text-shadow: none;
    margin-top: 15px;
    margin-bottom: 5px;
}

a {
    font-family: Helvetica, Arial, sans-serif;
}

p {
    color: purple;
    font-family: Helvetica, Arial, sans-serif;
    text-shadow: none;
    padding-left: 5%;
    padding-right: 5%;
}

img {
    max-width: 100%;
    max-height: 300px;
}

/* Photo home page */
.background-home {
    position: relative;
    background-image: url("../images/dv_2016_homepage_02.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.container-semi-transparent {
    width: 100%;
    min-height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    max-width: 1205px;
    margin: auto;
}

.container-grid-item {
    max-width: 600px;
    min-height: 500px;
}

.buttonstyle {
    padding: 8px;
    color: darkslategray;
    background-color: rgba(77, 00, 99, .3);
    font-weight: bold;
    text-decoration: none;
}

.center {
    text-align: center;
}

.spacer {
    height: 25px;
}

.left {
    text-align: left;
}

/*  Slideshow pages */
.background-slideshow {
    background-color: rgba(0, 0, 0, .9);
}

/* Add flex container properties to Swiper plugin swiper-slide class */
/* to vertically and horizontally center content */
.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caption {
    color: lightgray;
    font-size: .8em;
}

/* 
    Stellarnav navigation plugin theme overrides 
*/

/* Photo home page theme */
.stellarnav.dark { background: rgba(77, 00, 99, .3); }
.stellarnav.dark ul ul { background: rgba(204, 187, 187, 1); }
.stellarnav.dark li a { color: darkslategray; font-family: Helvetica, Arial, sans-serif; font-weight: bold; text-shadow: none; }
.stellarnav.dark .menu-toggle, .stellarnav.dark .call-btn-mobile, .stellarnav.dark .location-btn-mobile { color: darkslategray; text-shadow: none;}
.stellarnav.dark .menu-toggle span.bars span { background: darkslategray; }
.stellarnav.mobile.dark ul { background: rgba(204, 187, 187, 1); }
.stellarnav.dark a.dd-toggle .icon-plus:before { border-color: darkslategray; }
.stellarnav.dark a.dd-toggle .icon-plus:after { border-color: darkslategray; }

/* Photo slideshow page theme */
.stellarnav.light { background: rgba(139, 00, 139, .8); }
.stellarnav.light ul ul { background: rgba(204, 187, 187, 1); }
.stellarnav.light li a { color: gray; font-family: Helvetica, Arial, sans-serif; font-weight: bold; text-shadow: none; }
.stellarnav.light .menu-toggle, .stellarnav.light .call-btn-mobile, .stellarnav.light .location-btn-mobile { color: gray; text-shadow: none; }
.stellarnav.light .menu-toggle span.bars span { background: gray; }
.stellarnav.mobile.light ul { background: rgba(204, 187, 187, 1); }
.stellarnav.light a.dd-toggle .icon-plus:before { border-color: gray; }
.stellarnav.light a.dd-toggle .icon-plus:after { border-color: gray; }


@media screen and (min-width : 768px) {
    .background-home {
        background-image: url("../images/dv_2016_homepage_01.jpg");
    }

    /* Make headings a bit bigger on larger screens */
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 1.75em;
    }

    img {
        max-height: none; /* Override 300 px small screen height limit */
    }

    /* Home page styling */
    .container-grid-item {
        min-height: 700px;
    }
    
    /* Slideshow page styling */
    .img-slideshow {
        max-width: 100%;
        max-height: 80%;
    }

    .caption {
        font-size: 1em;
    }

    /* Stellarnav plugin overrides for larger screens */
    .stellarnav.dark li.has-sub > a:after { content: ''; margin-left: 10px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid darkslategray; display: inline-block; }
    .stellarnav.light li.has-sub > a:after { content: ''; margin-left: 10px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid gray; display: inline-block; }
}

@media screen and (min-width : 1200px) {
    .container-grid {
        grid-template-columns: 1fr 1fr;
    }
}
