@charset "utf-8";


/*****************************
 *
 *  GENERAL PAGE STRUCTURE
 *  
 ****************************/
* {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    background: rgb(193,232,245);
    background: linear-gradient(90deg, 
        rgba(193,232,245,1) 0%,
        rgba(255,255,255,1) 30%
    );
}
body {
    flex: 1;
    font: 1em/1.5em sans-serif;
    color: #000;
}

/*****************************
 *
 *  ANIMATIONS
 *  
 ****************************/
@keyframes pulsate {
    0% {transform: scale(1); opacity: 1;}
    50% {opacity: 1.0;}
    100% { transform: scale(1.1); opacity: 1;}
    /*100% { transform: scale(1); opacity: 1; }*/
}
/*****************************
 *
 *  HEADER
 *  
 ****************************/

header {
    width: 100%;
    min-height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: stretch;
    background-color: #142E37;
    border-bottom: 3em solid #58471E;
}
header div {
    flex: 0 0 35%;
    background: #142E37;
}
    header div a {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
        header div a img {
            max-width: 80%;
        }
header h1 {
    flex: 0 0 65%;
    background-image: url('/img/app-publica-poerrumshof2019/index_image.jpg');
    background-size: cover;
    background-position: 50% 0;
    margin: 0;
    padding: 0;
    text-indent: -99999px;
    overflow: hidden;
}
header a {
    display: block;
    width: 100%;
    height: 100%;
}
/*header a:hover {
    animation: pulsate .5s ease-out forwards;
}*/

/*****************************
 *
 *  NAVIGATION
 *  
 ****************************/


/*****************************
 *
 *  CONTENT
 *  
 ****************************/
 
 .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: stretch;
}
nav {
    flex: 0 0 20%;
    background-color: #658D9B;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding: .5em;
}
nav ul li a {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
    padding: .5em;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #88a6b0;
}
nav ul li a:hover {
    background-color: #AC776D;
}
nav a#toggleMenu {
    background: url('/img/app-publica-poerrumshof2019/menu_open.png') center right no-repeat;
    background-size: auto 100%;
    padding-right: 1.5em;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    display: inline-block;
    margin: .5em auto;
    height: 1em;
	display: none;
}
nav a#toggleMenu.open {
    background-image: url('/img/app-publica-poerrumshof2019/menu_close.png');
}


 .content {
    flex: 0 0 80%;
    padding: 2em;
 }

 /* check seperate CSS file */


/*****************************
 *
 *  dogs
 *  
 ****************************/
.dogs {
    float: right;
    background-color: #AC996D;
    padding: 1em;
    margin: 5em -2em 1em 1em;
    width: 20%;
    font-size: 1em;
    border-radius: 2em 0 0 2em;
}
.content .dogs h3 {
    text-align: center;
    margin: 0;
    padding: .5em 0;
    width: 100%;
    background: #ccbc97;
    border-bottom: .25em solid #58471E;
    font-size: 1.4em;
    border-radius: 1em 0 0 0;
}
.dogs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dogs  ul li a {
    display: block;
    width: 100%;
    font-size: .9em;
    color: #fff;
    padding: .5em;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: pre;
    overflow: hidden;
}
.dogs ul li:last-child a {
    border-radius: 0 0 0 1em;
}
.dogs  ul li a:hover {
    background-color: #AC776D;
}
/*****************************
 *
 *  FOOTER
 *  
 ****************************/
footer {
    background-color: #071C24;
    color: #fff;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 1.5em 10% 1.5em 10%;
    font-size: .8em;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
footer > div {
    flex: 1 0 33.33%;
    min-height: 2.5em;
}
footer > div:nth-child(2) { text-align: center; }
footer > div:last-child { text-align: right; }
footer a {
    color: #fff;
    text-decoration: underline;
}
footer a:hover {
    text-decoration: none;
}
.social_media a {
    width: 3em;
    height: 3em;
    display: inline-block;
}
    .social_media a img {
        display: block;
        max-width: 100%;
    }

    .footer_box {
        padding-left: 3.5em;
        background: url('/img/app-publica-poerrumshof2019/footer_email.png') top left no-repeat;
        background-size: 2em auto;
        margin-bottom: 1em;
    }
    .footer_phone {
        background-image: url('/img/app-publica-poerrumshof2019/footer_phone.png')
    }
    .footer_location {
        background-image: url('/img/app-publica-poerrumshof2019/footer_location.png')
    }
    .footer_property {
        background-image: url('/img/app-publica-poerrumshof2019/footer_property.png')
    }
/*****************************
 *
 *  CONTACT PAGE
 *  
 ****************************/

.contact .contact-row {
    margin-bottom: 1.5em;
}
    .contact label {
    }
    .contact input,
    .contact textarea {
        display: block;
        width: 50%;
        border: 1px solid #319fc8;
        padding: .5em;
        color: #319fc8;
    }
    .contact input:focus,
    .contact textarea:focus {
        color: #1D5A8B;
        border-color: #1D5A8B;
    }
    .contact textarea {
        min-height: 120px;
        padding-top: 9px;
        padding-bottom: 13px;
    }
    .contact [type=submit] {
        padding: 0 5em;
        height: 3em;
        background-color: #319fc8;
        border-radius: 1.5em;
        font-size: 1em;
        color: #fff;
        text-transform: uppercase;
        outline: none !important;
        border: none;
    }
    .contact [type=submit]:hover {
        background: #09144d;
    }
    .contact .error-message {
        font-size: .9em;
        color: red;
    }
    .contact .error-message:before {
        content: "\2191";
        color: red;
        margin: 0 .5em 0 0;
    }


/*******************************
*
*    PAGINATION
*
********************************/
.pagination {
    margin: 0;
    font-size: .7em;
}
.pagination a,
.pagination span {
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    border-radius: 3px;
    display: inline-block;
    line-height: 2.8em;
    vertical-align: middle;
    text-align: center;
    width: 3em;
    height: 3em;
    margin: .25em;
    text-decoration: none;
}
.pagination a:hover {
    border: 1px solid #404d5e;  
}
.pagination a.active {
    border: 1px solid #404d5e;
    color: #404d5e;
    font-weight: 900;
}


/*****************************
 *
 *  MODULE PHOTOALBUM 
 *  
 ****************************/

 /* PHOTOALBUM OVERVIEW */

.photoalbums {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.photoalbums > div {
    width: 14em;
    background: #fff;
    margin: 0 .5em 2em .5em;
    -webkit-box-shadow: 5px 5px 10px -5px #aaa;
    -moz-box-shadow: 5px 5px 10px -5px #aaa;
    box-shadow: 5px 5px 10px -5px #aaa;
    position: relative;
}
    .photoalbums > div img {
        display: block;
        width: 100%;
    }
    .photoalbums > div h3 {
        padding: .5em;
        margin: 0;
        font-size: 1.1em;
    }
    .photoalbums > div h3 a { color: #6699CC; }
    .photoalbums > div h3 a:hover { text-decoration: none; }
    
    .photoalbums p {
        font-size: .9em;
        padding: .7em;
        margin: 0;
    }
    
    .photoalbums > div > small {
        position: absolute;
        top: .25em;
        right: .25em;
        color: #fff;
        text-shadow:
            -1px -1px 0 #000,  
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }
    
 /* IN TO THE ALBUMS */
.photoalbums_album {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.photoalbums_album > a {
    display: block;
    width: 10em;
    height: 10em;
    overflow: hidden;
    background: #fff;
    margin: 0 .5em 2em .5em;
    -webkit-box-shadow: 5px 5px 10px -5px #aaa;
    -moz-box-shadow: 5px 5px 10px -5px #aaa;
    box-shadow: 5px 5px 10px -5px #aaa;
    border: 1em solid white;
    position: relative;
}
.photoalbums_album > a:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    opacity: 0.7;
    position: absolute;
    transform: scale(0);
    background: #fff url('/img/app-publica-poerrumshof2019/magnify.png') center center no-repeat;
    background-size: 60% 60%;
}
    .photoalbums_album > a:hover:after {
        animation: sheen .2s linear forwards;
    }
    
    @keyframes sheen {
        0% {
            transform: scale(0);
        }
        100% {
            transform: scale(1);
        }
    }

    
.photoalbums_album > a img {
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: 50% 50%;
    -moz-object-position: 50% 50%;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}
blockquote {
    display: block;
    background: #fff;
    padding: 1em 3em 1em 3em;
    margin: 0 0 2em 0;
    position: relative;
    font-family: Georgia, serif;
    font-size: 1.1em;
    line-height: 1.2;
    color: #666;
    -moz-box-shadow: 2px 2px 15px #ccc;
    -webkit-box-shadow: 2px 2px 15px #ccc;
    box-shadow: 2px 2px 15px #ccc;
    text-align: justify;
}
blockquote::before,
blockquote::after {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #999;
    position: absolute;
}
blockquote::before {
    left: 10px;
    top: 5px;
}
blockquote::after {
    content: '\201D';
    right: 10px;
    bottom: -35px;
}


.small      { font-size: 1em !important; }
.m-top-2em  { margin-top: 2em !important; }


.iconInfo {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    padding: 0;
}
    .iconInfo a {
        display: block;
        width: 55px;
        height: 70px;
        overflow: hidden;
        opacity: .7;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
        .iconInfo a:hover {
            width: 200px;
            opacity: 1;
        }
        .iconInfo a img {
            max-height: 100%;
        }
/*****************************
 *
 *  RESPRONSIVE VIEW
 *  
 ****************************/

@media all and (max-width: 50em) {
    header {
    	flex-direction: column-reverse;
        min-height: auto;
        border-bottom-width: 2em;
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 50%;
            align-items: stretch;
    }
    header div {
    	padding: .5em 0;
    	flex: 0 0 15%;
    }
    header h1 {
    	flex: 1 1 85%;
    }
	.wrapper {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    align-items: stretch;
	    
	    flex-direction: column;
	    margin: 0;
	    padding: 0;
	    width: 100%;
	}
	nav {
		display: block;
		text-align: center;
	}
	nav a#toggleMenu {
		display: inline-block;
	}
	nav ul {
		display: none;
	}


	.dogs { display: none; }


	.content {
		flex: 0 0 80%;
		padding: 1em;
		margin: 0;
	
	}
	.content h2,
	.content h3,
	.content h4,
	.content h5,
	.content h6 {
	    width: 100%;
	}
	.content h2 { font-size: 2em; }
	.content h3 { font-size: 1.4em; }
	.content h4 { font-size: 1.3em; }
	.content h5 { font-size: 1.1em; }
	.content h6 { font-size: 1em; }
	.content p  { font-size: 1em; line-height: 1.2em }
	 .content img {
	 	max-width: 80% !important;
	 }


    footer {
        width: 100%;
        flex-direction: column;
    }
    footer > div {
        flex: 1 0 100%;
    }
    footer > div:last-child { text-align: left; }



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


    .contact input,
    .contact textarea {
        width: 100%;
    }

    .iconInfo {
        position: static;
        background: #fff;
        margin: 0;
        padding: .5em 0;
    }
    .iconInfo a {
        margin: 0 auto;
        display: block;
        width: 30%;
        height: auto;
        overflow: auto;
        opacity: 1;
        -moz-transition: v;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        text-decoration: none;
    }
    
    .iconInfo a:hover {
        width: 30%;
    }
    .iconInfo a:before {
        display: block;
        margin-bottom: .5em;
        content: 'Deze website is gemaakt door:';
        color: black;
        font-size: .7em;
    }
    .iconInfo a img {
        max-height: 100%;
        max-width: 100%;
    }
}
       