:root /* Variables here.*/
{
    --text-color: #161616;
    --border-bottom-color:#292929;
    --background-color:#a5a5a5;
    --page-shadows: rgba(0,0,0,0.2); /*HEX format does not have opacity. Thats why im using RGB instead of hex.*/
    --header-color:#111111;
    --header-text-color: white;
}

* /* This will be applied to everything */
{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: var(--text-color);
    cursor:default;
}

body /* Set background color of page */
{
    background-color: var(--background-color);
}

.header
{
    background-color: var(--header-color); 
    box-shadow: 0 6px 6px var(--page-shadows);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 80px;
}

.header h1 /*Logo / website header text*/
{
    color: var(--header-text-color);
    font-size: 60px;
    height: 100%;
    float: left;
    padding-top: 15px;
    padding-left: 20px;
}

.logo /*logo */ 
{ 
    cursor: pointer;
    margin-right: auto;
    width: 250px;
    padding-left: 100px;
    padding-top: 10px;
    pointer-events: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}


.menu-links
{
    padding-right: 130px;
    float: right;
    text-align: center;
    padding-top: 20px;
}

.menu-links a
{

    padding-left: 50px;
    
    font-size: 30px;
    color: var(--header-text-color);
    text-decoration: none;
    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.menu-links a:hover /* When hovering on link. show underline thingie */
{
    text-shadow: 0px 0px 3px white;
}

.page-img /* scale img tag to intire width of site. Also remove padding on bottom of image caused by resizing. */
{
    width: 100%;
    display: block;

    /* Prevent ghost image (When draging img)*/
    pointer-events: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.page-img-container /*Make this object/div relative while using absolute*/
{
    position: relative;
}
.page-img-btn
{
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;

    font-size: 50px;
    padding: 14px 25px;
    text-decoration: none;

    
}

.page-img-btn:hover
{
    color: #c2c2c2;
}

.grid-container /* Use grids to align all ze shit */
{
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: white;
    width: 100%;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 40px;
}

.grid-container p 
{
    padding-left: 40px;
    padding-right: 40px;
}

.grid-container h2 
{
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}

.grid-container h1 /* Set header as one long boi */
{
    grid-column-start: 1;
    grid-column-end: 4;
    text-align: center;
    border-bottom: 2px solid;
    border-color: var(--text-color);
    border-spacing: 10px 10px;
    font-size: 4vw;
    margin-left: 100px;
    margin-right: 100px;

    margin-bottom: 50px;
}

.locatie /* Padding locatie modules */
{ 
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
}

.footer /*Create a grid of 4 for the footer. Give width, height and color*/
{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: stretch;
    background-color: var(--header-color);
    width: 100%;
    height: 200px;
    
}

.footer-row /* create rows of 4 */
{
    
    display: grid;
    grid-template-rows: auto auto auto auto;
    padding-top: 25px;
    text-align:center;
}

.footer-row a, .footer-row p
{
    text-decoration: none;
    color: white;
}

.footer-row h3
{
    color: white;
}

.grid-btn
{
    text-align: center;
    color: darkcyan;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Scrolling locations/offsets */
.homeScroll /*Set scrolling position offset*/
{
    margin-top: -80px;
    padding-bottom: 80px;
    display: block;
}

table, th, td /* Create border around tables. */
{
  border: 1px solid black;
  margin-left: -5px;
}
th /* table header color */
{
    background-color: var(--header-color);
    color: white;
}
tr:nth-child(even) /* ONLY apply this when at even row. so at row 0 2 4 6 8 etc Copy paste and change to odd if you want to color the others. */
{
    background-color: #ebe8e8;
}

/* Global tags */
h1
{
    font-size: 80px;
    padding-bottom: 5px;
}

h2
{
    padding-bottom: 5px;
    font-size: 30px;
}

p
{
    font-size: 20px;
}

/* NAV BAR */

.sidenav 
{
    border-top: 2px solid white;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 80px;
    right: 0;
    background-color: var(--header-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
  
.sidenav a 
{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover 
{
    color: #f1f1f1;
}

.sidenav .closebtn 
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.menuBtn 
{
    display: none;
    font-size:  30px;
    cursor: pointer;
    color: white;
}


.zoomed-img /* Make img zoomable with animation*/
{
    pointer-events: visible;
    transition: transform 0.25s ease;
    cursor: zoom-in;
}

.zoomed-img:hover /*TODO: :hover of :active??*/ /* When holding mouse button. zoom in*/
{
    transform: scale(2);
    cursor: zoom-out;
}

.grid-center
{
    justify-content: center;
}

.fa 
{
    font-size: 30px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 10px 0px;
}

.fa:hover 
{
    opacity: 0.7;
}

.fa-facebook 
{
    background: #3B5998;
    color: white;
}

.fa-google 
{
    background: #dd4b39;
    color: white;
}

.fa-twitter 
{
    background: #55ACEE;
    color: white;
}

.maps
{
    width: 36.4583vw;
}

.up-scroll-btn {
    background-color: rgba(0, 139, 139, 0.80);
    border-radius: 50%;
    color: white;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    margin: 20px;
    padding: 10px 14px;
}

textarea
{
   resize: none;
}

table 
{
    border-collapse: collapse;
    width: 100%;
}

td, th 
{
    text-align: left;
    padding: 8px;
}

form
{
    padding-top: 70px;
    text-align: center;
}

form input, form textarea 
{
    width: 80%;    
}

form .sumbit-btn
{
    border: none;
    margin-top: 20px;
    padding: 20px;
    background-color: var(--header-color);
    color: white;
}

.text-center
{
    text-align: center;
}

@media screen and (max-width: 1100px)
{
    .menu-links
    {
        display: none;
    }

    .menuBtn
    {
        display: block;
    }
}

@media screen and (max-width: 860px)/* Dion help ff */
{
    .grid-container /* Use grids to align all ze shit */
    {
        display: block;
    }

    .logo
    {
        width: 180px;
        padding-left: 10px;
    }

    .maps
    {
        width: 100%;
    }
   
}


