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

/* Standard page styles */
:root {
	--black: #000000;
	--white: #FFFFFF;
	
	--act-primary: rgba(28, 80, 124, 1);
	--act-primary-light: rgba(232, 237, 242, 1);
	--act-primary-dark: rgba(20, 34, 53, 1);
	--act-primary-trans: rgba(28, 80, 124, 0.3);
	--act-primary-trans-thick: rgba(28, 80, 124, 0.7);
	--act-alt: rgba(230, 140, 62, 1);
	--act-alt-light: rgba(246, 206, 125, 1);
	--act-alt-dark: rgba(187, 102, 28, 1);
	--act-alt-trans: rgba(230, 140, 62, 0.3);

	--alrt-green: #39BF6B;
	--alrt-red: #b20400;
	--alrt-blue: #50CCE8;
	--alrt-yellow: #FFF1C4;
	
	--shd-light: rgba(232, 237, 242, 1);
	--shd-mid: rgba(170, 169, 171, 1);
	--shd-dark: rgba(47, 56, 65, 1);
	
	--text: rgba(28, 80, 124, 1);
	--border: #CCCCCC;
	--shadow: 0 0 20px 0 rgba(47, 56, 65, 0.1);
	--glow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
	
	--sml-radius: 5px;
	--big-radius: 20px;
	--rounded: 100px;
	
	--widget-padding: 80px 0;
	--std-gap: 5%;
	
	--font-family: "arboria", sans-serif;
	--font-family-head: "basic-sans", sans-serif;
	--std-font-size: 18px;
	--std-font-weight: 400;
	
	--back-blue: url('/wp-content/uploads/2024/11/bg_blauw.png');
	--back-orange: url('/wp-content/uploads/2024/11/bg_oranje.png');
}


html,
body {
    padding: 0;
    margin: 0;
	position: relative;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	color: var(--text);
	background-color: var(--white);
	font-size: var(--std-font-size);
	font-weight: var(--std-font-weight);
}

/* Fonts */
p {
	padding: 0;
    margin: 0;
	font-size: var(--std-font-size);
	font-weight: var(--std-font-weight);
	line-height: 27px;
}

h1 {
	font-family: var(--font-family-head);
	font-size: 65px;
	line-height: 75px;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	margin: 0;
}

h2 {
	font-family: var(--font-family-head);
	font-size: 40px;
	line-height: 50px;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	margin: 0;
}

h3 {
	font-family: var(--font-family-head);
	font-size: 24px;
	line-height: 32px;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	margin: 0;
}

h4 {
	font-family: var(--font-family-head);
	font-size: 18px;
	line-height: 26px;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	margin: 0;
}


h5, h6 {
	margin: 0;
}

a {
	text-decoration: none;
}

button {
	border: none;
}

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

grid {
	display: grid;
}

grid.text-box {
	gap: 30px;
}

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

.button {
	position: relative;
	background-color: var(--act-alt);
	color: var(--white);
	padding: 8px 23px 8px 20px;
	text-decoration: none;
	font-family: var(--font-family-head);
	font-style: italic;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 1px;
	border: 2px solid var(--act-alt);
	border-radius: var(--rounded);
	align-content: center;
	display: flex;
	align-items: center;
}

.button:hover {
	background-color: var(--act-alt-dark);
	border-color: var(--act-alt-dark);
}

.button.alt {
	background: none;
	color: var(--act-alt);
}

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

.button.blue {
	background-color: var(--act-primary);
	border-color: var(--act-primary);
}

.button.blue:hover {
	background-color: var(--act-primary-dark);
	border-color: var(--act-primary-dark);
}

.button icon {
	position: absolute;
	display: grid;
	align-content: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background-image: linear-gradient(90deg, var(--act-alt-light) 0%, var(--act-alt) 100%);
	right: -13px;
	border-radius: 50%;
	border: 2px solid var(--white);
	color: var(--white);
}

.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) {
	h1 {
		font-size: 35px;
		line-height: 45px;
	}

	h2 {
		font-size: 28px;
		line-height: 38px;
	}
}

/* ANIMATIONS */

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

.fa-circle-notch.white {
	color: var(--white);
}

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