/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   KLEUREN
========================= */
:root {
    --black: #000000;
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.6);
}

/* =========================
   BODY
========================= */
body {
    background-color: rgb(18, 18, 18);
    color: var(--gold);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    min-height: 100vh;

    /* ruimte onder vaste navbar */
    padding-top: 100px;

    /* test / scrollruimte */
    margin-bottom: 200px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    width: 100%;
    height: 100px;

    border-bottom: 2px solid white;
    color: white;

    transition: transform 0.35s ease;
    z-index: 1000;
}

.navbar--hidden {
    transform: translateY(-100%);
    border-bottom: none !important;
}

/* =========================
   NAVBAR STRUCTUUR
========================= */
.navbar > div {
    flex: 1;
    display: flex;
    align-items: center;

    padding-top: 16px;
    padding-bottom: 16px;

    background-color: rgb(18, 18, 18);
}

.nav-links {
    font-size: 19px;
    padding-left: 10px;
}

.nav-rechts {
    justify-content: right;
    padding-right: 10px;
}

.nav-logo img {
    height: 90px;
    width: auto;
    display: block;
}

/* =========================
   NAVBAR BUTTONS / LINKS
========================= */
.Service-button {
    background-color: transparent;
    border: none;
    color: white;
    margin-right: 30px;
    text-decoration: none;
}

.Service-button:hover {
    border-bottom: 1px solid white;
    cursor: pointer;
}

.Service-button:active {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
}

.Contact-button {
    background-color: transparent;
    border: none;
    color: white;
    margin-right: 30px;
    text-decoration: none;
}

.Contact-button:hover {
    border-bottom: 1px solid white;
    cursor: pointer;
}

.Contact-button:active {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
}

.home-button {
    text-decoration: none;
    color: white;
}

/* =========================
   SUBTIELE HOVER EFFECTEN
========================= */
.nav-rechts a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/*===================
Vanaf hier is de main page
=====================*/

/*===================
Welcome animation
=====================*/
.welcome-animation {
    border-bottom: 2px solid white;
    width: 100%;
    margin-bottom: 10px;
}

.video1 {
    display: flex;
     width: 100%;
    height: 100%;
}

/*=================
Hier logo + text
==================*/

.logo-block {
    display: flex;
    width: 100%;
    height: 350px;

    justify-content: center;

}

.welcome-logo {
    height: 100%;
}

.text1 {
    display: flex;
}

.text1 > div {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.textbox-left,
.textbox-right{
    display: flex;
    flex-direction: column;

    color: white;
    border: 1px solid #d4af37;
    padding-top: 40px;

    margin-bottom: 80px;
    font-family: AppleGothic;
}

.left-header,
.right-header {
    padding-bottom: 40px;

}

.textbox-left p,
.textbox-right p{
    width: 50%;
    line-height: 1.5;

    font-size: 15px;

    padding-bottom: 14px;
    height: 70%;
}


/*===========
Animatie
=============*/

.animatie {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
}

.animatie-track {
    display: inline-flex;
    width: max-content;
    animation: marquee 13s linear infinite;
    will-change: transform; /* performance */
}

.animatie-track span {
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    padding-right: 40px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

/*==========================
EINDE VAN DE INTRO PAGINA
============================*/
