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

/* Standard page styles */
:root {
	--black: #000000;
	--white: #FFFFFF;
	
	--act-primary: #0038FD; 
	--act-dark: #002CA8;
	--act-light: rgb(239, 242, 254);
	--act-alt: #DB00AE;
	--act-primary-trans: #0038FD10; 
	
	--alrt-green: #39BF6B;
	--alrt-red: #EA5754;
	--alrt-blue: #50CCE8;
	--alrt-yellow: #FCD900;
	
	--shd-light: #F5F5F5;
	--shd-mid: #AAA;
	--shd-dark: #5A5F66;
	
	--text: #000D1A;
	--std-gap: 5%;
	--sml-radius: 15px;
	--big-radius: 50px;
	--menu-radius: 5px;
}


html {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
	font-family: "Noto Sans", sans-serif;
	color: var(--text);
	background-image: url(/wp-content/uploads/2024/06/Dakjes_shape.svg);
	background-size: 100%;
}

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

h1 {
	font-size: 40px;
	line-height: 50px;
	font-weight: 800;
	margin: 0;
}

h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 800;
	margin: 0;
}

h3 {
	font-size: 22px;
	line-height: 32px;
	font-weight: 700;
	margin: 0;
}

h4 {
	font-size: 20px;
	line-height: 32px;
	font-weight: 700;
	margin: 0;
}


h5, h6 {
	margin: 0;
}

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

a.hover:hover {
	color: var(--act-dark);
}

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

grid {
	display: grid;
}

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

g {
	color: var(--shd-mid);
}

/* 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: var(--act-alt);
	border: 2px solid var(--act-alt);
	color: var(--white);
	padding: 15px 35px;
	border-radius: var(--big-radius);
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.button-alt {
	background: none;
	border: 2px solid var(--act-alt);
	color: var(--act-alt);
	padding: 15px 35px;
	border-radius: var(--big-radius);
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.text-box {
	gap: 20px;
	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);
    }
}