/*
Theme Name: Pageking Flex (child)
Template: pk-theme
Author: Pageking
Author URI: https://www.pageking.nl/
Description: Pageking is een thema voor WordPress dat is ontworpen voor Pageking websites.
Requires at least: 5.9
Tested up to: 6.7.2
Requires PHP: 8.3
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-family: "Poppins", sans-serif;
}

/* ALS ER MAAR 1 ALINEA IS, GEEN MARGIN GEVEN */
p:only-child {
    margin: 0;
}

.pk-button {
	padding: 1em; background-color: #aaaaaa;
	text-decoration: none;
}


/* Socials component */
.social-icons{
	display: flex; 
	gap: 20px;
	font-size: 30px;
	font-family: "Font Awesome 6 Brands";
	padding: 20px 0px;
}

.social-icons a{
	text-decoration: none;
	color: var(--pk-text-color);
}

.social-icons a i{
	font-style: unset;
}
/* End socials component */


/* Footer */
footer .pk-col{
	margin-bottom: 20px;
}

footer h4{
	margin-bottom: 1em;
}

footer nav ul li{
	margin: .4em 0px .4em 0px;
}

footer .pk-row:not(.pk-footer-bottom) nav ul li{
	display: inline-block;
	width: 100%;
}

footer ul.footer-bottom-menu{
	display: flex;
	justify-content: flex-end;
	gap: 0px 20px;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	footer ul.footer-bottom-menu{
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		gap: 0px;
	}
}
/* End footer */