/*
Theme Name: Keizerpoort
Author: Floris Heyvaert
Author URI: https://google.com
Version: 1.0
*/

:root {
    --header-height: 7rem;
    --footer-height: 2rem;
}

html {
    min-height: 100vh;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
    height: calc(100vh - var(--footer-height)) !important;
    overflow: auto;
    background: var(--background-color);
    color: var(--background-color-font);
}

body.menu-mobile-open {
    overflow-y: hidden !important;
}

p {
    margin: 0 !important;
}

a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
}

#header {
    height: var(--header-height);
}

.menu-header-container {
    height: 100%;
}

ul {
    list-style-type: none;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

ul li a {
    margin-left: 3rem;
    text-decoration: none;
    color: var(--background-color-font);
}

#menu-mobile ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

#menu-mobile li {
    font-size: 1.25rem;
    background: var(--primary-color);
    color: var(--primary-font-color);
    width: 100%;
    border-radius: .25rem;
}

#menu-mobile li a {
    margin-left: 0 !important;
}

#menu-mobile .current_page_item a {
    color: var(--background-font-color);
}

.current_page_item a {
    color: var(--primary-color);
    font-weight: bold;
    transform: scale(1.1);
}

/*******************
********TITLE*******
*******************/
/* 
h1, h2, h3, h4, h5, h6 {
    position: relative;
}

h1:before, h2:before, h3:before, h4:before, h5:before, h6:before {
    content : "";
    position: absolute;
    left    : 33%;
    right: 33%;
    bottom  : -.75rem;
    height  : .5rem;
    border-bottom: .75rem solid var(--primary-color);
    border-radius: .25rem;
  } */

/*******************
********BUTTONS*****
*******************/

button {
    border-radius: 0.2rem !important;
    border: none;
}

button:hover {
    transform: scale(1.01) !important;
}

.btn-first {
    background: var(--primary-color);
    color: var(--primary-font-color);
    box-shadow: 5px 5px var(--primary-color-600);
    font-weight: bold;
    cursor: pointer;
}

.btn-second {
    background: var(--secondary-color);
    color: var(--secondary-font-color);
    box-shadow: 5px 5px var(--secondary-color-600);
    cursor: pointer;
}

.btn-hero {
    width: 80%;
    max-width: 40rem;
    padding: 1rem !important;
    font-size: 1.5rem !important;
}

/*******************
****MENU_MOBILE*****
*******************/

#menu-mobile {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    overflow: hidden !important;
}


/*******************
********HERO********
*******************/

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2023/04/image_hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 70%;
    opacity: .75;
}

.hero > div {
    position: relative;
}

