/*
Theme Name: RW - Budgetcoaching
Author: Rockit Works
Author URI: https://www.rockit.works
Version: 1.0
*/

/* Standard page styles */
:root {
	--black: #000000;
	--white: #FFFFFF;
	
	--act-primary: #D79B30; 
	--act-dark: #976B1B;
	--act-light: #FFF6E6;
	--act-alt: #214352;
	
	--alrt-green: #39BF6B;
	--alrt-red: #EA5754;
	--alrt-blue: #50CCE8;
	--alrt-yellow: #FFF1C4;
	
	--shd-light: #F5F5F5;
	--shd-mid: #CCC;
	--shd-dark: #5A5F66;
	
	--text: #5A5F66;
	--std-gap: 5%;
	--sml-radius: 15px;
	--big-radius: 50px;
}

html {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
	font-family: 'Poppins', sans-serif!important;
	color: var(--text);
	background-image: url(/wp-content/uploads/2025/02/euro_raster.svg);
	background-size: 100%;
}

/* FONTS */
p {
	padding: 0;
    margin: 0;
	font-size: 20px;
	font-weight: 300;
	line-height: 36px;
}

h1 {
	font-size: 44px;
	line-height: 54px;
	font-weight: 500;
	margin: 0;
}

h2 {
	font-size: 42px;
	line-height: 54px;
	font-weight: 500;
	margin: 0;
}

h3 {
	font-size: 25px;
	line-height: 35px;
	font-weight: 500;
	margin: 0;
}


h4, h5, h6 {
	margin: 0;
}

a {
	text-decoration: none;
	color: var(--act-primary);
}

li {
	font-size: 20px;
	font-weight: 300;
	line-height: 36px;
}

flex {
	display: flex;
	align-items: center;
}

grid {
	display: grid;
}

act {
	color: var(--act-primary);
}

/* Tussenruimte van blokken (acf rows) */
.space {
	height: 150px;
}

/* Breedte van de content */
.boxed {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 25px;
}

.buttons {
	gap: 10px;
	flex-wrap: wrap;
}

.button {
	background-color: rgba(0,0,0,0);
	color: var(--act-primary);
	padding: 6px 22px;
	border: 2px solid var(--act-primary);
	border-radius: var(--big-radius);
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}

.button-alt {
	background-color: var(--act-primary);
	color: var(--white);
	padding: 6px 22px;
	border: 1px solid var(--act-primary)!important;
	border-radius: var(--big-radius);
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}

.text-box {
	gap: 40px;
	align-content: center;
}

.menu li {
	list-style: none;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
    
}

@media screen and (max-width: 768px) {
	body {
		background-size: 300%;
		background-position: center;
	}
	
	.text-box {
		justify-items: start;
	}
	
	h1 {
		font-size: 28px;
		line-height: 34px;
	}
	
	h2 {
		font-size: 24px;
		line-height: 30px;
	}
	
	p {
		font-size: 18px;
		line-height: 26px;
	}
}

/* ANIMATIONS */

.fa-circle-notch {
	color: var(--act-primary);
	animation-name: spin;
	animation-duration: 1500ms;
  	animation-iteration-count: infinite;
  	animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}