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

/* Standard page styles */
:root {
	--black: 0, 0, 0;
	--white: 255, 255, 255;
	
	--act-primary: 210, 161, 69;
	--act-primary-dark: 182, 125, 46;
	--act-primary-light: 226, 198, 117;
	
	--act-business: 79, 98, 121;
	--act-event: 0, 112, 102;
	
	--junior-purple: 107, 62, 131;
	--junior-yellow: 253, 224, 50;
	--junior-blue: 51, 182, 236;
	--junior-mint: 81, 174, 170;
	
	--alrt-green: 143, 191, 33;
	--alrt-red: 234, 87, 84;
	--alrt-blue: 80, 204, 232;
	--alrt-orange: 255, 105, 0;
	
	--shd-light: 200, 200, 200;
	--shd-mid: 100, 100, 100;
	--shd-dark: 10, 10, 10;
	--shadow: 0px 1px 3px rgba(0,0,0,0.2);
	
	--text: 0, 0, 0;
	--std-padding: 80px;
	--header-padding: 150px;
	--sml-radius: 10px;
	--big-radius: 30px;
	
	--font-family: 'Exo 2', sans-serif;
	--std-font-size: 16px;
	--std-font-line-height: 26px;
	--std-font-weight: 300;
	
	--wc-form-border-color: rgba(200, 200, 200, 1);
}

html {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
	font-family: var(--font-family);
	color: rgba(var(--text), 1);
	background-color: rgba(var(--shd-dark), 1);
	font-size: var(--std-font-size);
	line-height: var(--std-font-line-height);
	font-weight: var(--std-font-weight);
}

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

h1 {
	font-size: 35px;
	line-height: 40px;
	font-weight: 600;
	margin: 0;
}

h2 {
	font-size: 27px;
	line-height: 30px;
	font-weight: 600;
	margin: 0;
}

h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	margin: 0;
}

h4 {
	font-size: 15px;
	line-height: 23px;
	font-weight: 600;
	margin: 0;
}


h5, h6 {
	margin: 0;
}

a {
	text-decoration: none;
	font-size: var(--std-font-size);
	color: rgba(var(--white), 1);
	line-height: var(--std-font-line-height);
	font-weight: var(--std-font-weight);
}

main a {
	color: rgba(var(--act-primary), 1);
}

li {
	font-size: var(--std-font-size);
	font-weight: var(--std-font-weight);
	line-height: var(--std-font-line-height);
}

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

grid {
	display: grid;
	position: relative;
}

act {
	color: rgba(var(--act-primary), 1);
}

section.first {
	padding-top: var(--header-padding)!important;
}

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

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

button {
	padding: 10px 15px;
	border-radius: var(--sml-radius);
	border: none;
	font-size: var(--std-font-size);
	font-weight: 600;
	cursor: pointer;
}

.button {
	background-color: rgba(var(--white), 1);
	color: rgba(var(--text), 1);
	padding: 10px 15px;
	border-radius: var(--sml-radius);
	text-decoration: none;
	font-size: var(--std-font-size);
	font-weight: 600;
	cursor: pointer;
}

.button a {
	color: rgba(var(--text), 1);
	font-weight: 600;
}

.text-box {
	gap: 20px;
}

.info-box {
	background-color: rgba(var(--white), 1);
	color: rgba(var(--text), 1);
	position: absolute;
	top: 100%;
	margin-top: 10px;
	padding: 5px 10px;
	border-radius: 5px;
	display: none;
}

.info-box::before {
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: -5px;
	left: 20px;
	background-color: rgba(var(--white), 1);
	transform: rotate(45deg);
}

.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: 25px;
		line-height: 32px;
	}
	
	.text-box {
		justify-items: start;
	}
	
	:root {
		--std-padding: 30px 0;
	}
}

/* ANIMATIONS */

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

.fa-circle-notch.black {
	color: rgba(var(--act-text), 1);
}

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

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