/*
Theme Name: Praktijk Verschuur
Version: 1.0
Description: Eigen wordpress theme voor Praktijk Verschuur
Author: Fred Verschuur
*/

/* Variables: colors */ 

:root {
    --pv-blue: #004FAD;
    --pv-green: #4CAF4F;
    --pv-yellow: #FAAF48;
}

body, html {
	font-family: "Red Hat Display", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}
h1 {
    margin-bottom: 2rem;
}

h3, h4 {
    margin-top: 2rem;
}

a {
	text-decoration:none;
	color: var(--pv-blue);
}

a:hover {
	text-decoration: underline;
}

.white-link {
	color: #fff;
}

i {
    position: relative;
    top: 1px;
    margin-right: 5px;
}

.pv-yellow {
    color: var(--pv-yellow);
}

/* Header */

#header  {
	background: url("../praktijkverschuur/assets/images/woods.jpeg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	height: 190px;
}


#logo-area {
	background-color:#ffffff;
	opacity: 1;
	width: 280px;
	padding: 15px;
	border-radius: 0 0 10px 10px;
	box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)!important
}

@media only screen and (max-width:576px) {

	#logo-area {
		margin: auto;
	}
}

/* Navbar */

#navbar {
	background-color: var(--pv-blue);
	color: #fff;
    padding: 0;
    margin-top: 16px;
}

#navbar-logo, .nav-item a {
    color: #fff;
    text-decoration: none;
    text-align:center;
    padding:6px 16px;
	vertical-align:middle;
    display: inline-block;
}

#navbar-logo:hover, .nav-item a:hover {
    background-color: #efefef;
    color: #000;
}

.pv-toggler {
    color: #ffffff;
    border: 0;
}

/* Main */

#pv-article {
    width: 67%;
    float: left;
}

#pv-sidebar {
    width: 33%;
    float: left;
}

@media only screen and (max-width:992px) {

    #pv-article {
        width: 100%;
    }
    
    #pv-sidebar {
        width: 100%;
    }

    .nav-item a {
        color: #fff;
        text-decoration: none;
        text-align:center;
        padding:6px 16px;
        vertical-align:middle;
        display: inline-block;
        width: 100%;
    }
}

.pv-pointer {
    color: var(--pv-green);
}

/* Widgets */

widget header {
	padding: 6px 15px;
	border-radius: 5px;
    background-color: var(--pv-blue);
	color: #fff;
    display:inline-block;
    width: 100%;
    margin-top: 15px;
}

widget header i {
    margin-right: 7px;
}

widget content {
    display: block;
    padding: 15px 10px;
}

/* Footer */

#footer {
	background-color: var(--pv-blue);
	color: #fff;
    clear: both;
}

#bottom {
	background-color: #efefef;
    color: #000000;
}

/* Aanmeldbutton */

.aanmeld-button {
	display: block;
	background-color: var(--pv-green);
	color: #fff;
	padding: 10px 10px;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	font-size: 20px;
	margin: 20px 0 30px 0;

}

.aanmeld-button:hover {
	text-decoration: none;

}

.aanmeld-button:active {
	position: relative;
	top: 1px;

}