
/* Color palette */

:root {
    --gold:#BCA330;
    --darkgold:#7E6D1B;
    --gray:#7A7A7A;
    --darkgray:#292929;
    --nearblack:#1D1D1D;
}

/* Set colors for user dark modes */

@media (prefers-color-scheme: dark) {

    :root {
        --gold:#BCA330;
        --darkgold:#7E6D1B;
        --gray:#7A7A7A;
        --darkgray:#292929;
        --nearblack:#1D1D1D;
    }

    /* Set text colors for user dark modes */

    h1,
    h2,
    h3,
    a,
    .fullscreen-button,
    .contactinfo-item .icon,
    #navButton .toggle{
        color: var(--gold);
    }

    p,
    button,
    .button,  
    submit,
    input[type="button"],
    input[type="submit"],
    input[type="reset"],
    #header nav ul li a{
        color: #fff;
    }

    /* Set background colors for user dark modes */

    body {
        background: var(--darkgray);
    }

    #header{
        background-color: var(--nearblack);
        background: var(--nearblack);
    }

    .contactinfo {
        background-color: var(--nearblack);
    }

    #footer {
        background-color: #000;
    }

    .button,
    .icon.circle{
        background-color: var(--gold);
    }

    .button:hover {
        background-color: var(--darkgold);
    }

    #navButton,
    .fullscreen-button{
        background-color: rgba(0, 0, 0, 0.2); 
    }
    
}

/* Typography */

.hide{
    display: none;
}

h1{
    color: var(--gold);
    font-family: "Asap", Arial, Helvetica, sans-serif;
    font-size: 90px;
    font-style: normal;
    font-weight: 600;
    line-height: 130px;
    margin: 0;
    padding: 0;
    border: 0;
}

h2{
    color: var(--gold);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 60px;
    font-style: normal;
    letter-spacing: normal;
    font-weight: 200;
    line-height: 60px;
    margin: 0;
    padding: 25px 0 25px 0;
    border: 0;
}

h3{
    color: var(--gold);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-style: normal;
    letter-spacing: normal;
    font-weight: 200;
    line-height: 30px;
    margin: 0;
    padding: 25px 0 25px 0;
    border: 0;
}

h4{
    color: #fff;
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    fill: #fff;
}

p{
    color:#fff;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    letter-spacing: normal;
    font-weight: 300;
    line-height: 30px;
    margin:0;
    padding: 0 0 30px 0;
    border: 0;
}
a {
    color: var(--gold)
  }

.text-align-right{
    text-align:right;
}

.text-align-center{
    text-align: center;
}

.hidetext{
    font-size: 0;
}

/* Buttons */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button{
    color:#fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    fill:#fff;
    background-color: var(--gold);
    border-radius: 10px;
    margin:0;
    padding: 0px 10px;
    border:0;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
    min-width: 10em;
}

.button:hover {
    background-color: var(--darkgold);
    transform: scale(.9);
}

/* Navbar */

#logo{
    width: 100px;
    height: 55px;
    object-fit: fill;
}

#header{
    background-color: var(--nearblack);
    background: var(--nearblack);
    padding: 0.9em 1.3em;
    max-height: 80px;
    z-index: 10000;
}

#header.reveal{
    background-color: var(--nearblack);
    background: var(--nearblack);
    z-index: 10000;
}

.header-reveal-animation {
    -moz-animation: reveal-header 0.5s;
    -webkit-animation: reveal-header 0.5s;
    -ms-animation: reveal-header 0.5s;
    animation: reveal-header 0.5s;
}

#header.alt{
    background-color: transparent;
    background: transparent;
    padding: 0.9em 1.3em;
    max-height: 80px;
}

#header.alt nav {
    right: 1.5em;
    top: 0.75em;
  }

#header.alt nav ul li{
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 10px;
}

#header nav{
    z-index: 10000;
}

#header nav ul {
    list-style: none;
    padding-left: 0;    
    margin: 1em;
    z-index: 10000;
}

#header nav ul li a {
    border: solid 1px transparent;
    color: #fff;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    border-radius: 10px;
    z-index: 10000;
}

#header nav ul li a:hover, #header nav ul li a:active{
    background: var(--gold);
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#header nav ul li.active > a, #header nav ul li:hover > a {
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

/* Mobile logo displayed only on -840px */

.mobile-logo{
    display: none;
    top: 5px;
    left: 5px;
    height: 50px;
    width: auto;
    border-radius: 0px;
    position: absolute;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0); 
    z-index: 10000000;
}

/* Navbar dropdown styling*/

.dropotron {
    list-style: none;
    padding-left: 0;
    background: #000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.075);
    line-height: 2.25em;
    min-width: 13em;
    padding: 1em 0;
    text-transform: uppercase;
    margin-top: calc(-1em + 1px);
    z-index: 100000;
}

    .dropotron.level-0 {
        font-size: 1em;
        font-weight: 400;
        margin-top: 0em;
        color: #fff;
        font-family: "DM Sans", Sans-serif;
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
        font-style: normal;
        text-decoration: none;
        border-radius: 10px;
        z-index: 100000;
    }

        .dropotron.level-0:before {
            border-bottom: solid 1px var(--darkgray);
            border-left: solid 0.5em transparent;
            border-right: solid 0.5em transparent;
            content: '';
            left: 0.75em;
            position: absolute;
            top: -0.45em;
            z-index: 100000;
        }

    .dropotron > li {
        border-top: solid 1px var(--darkgray);
        padding-left: 0;
        z-index: 100000;
    }

        .dropotron > li > a {
            -moz-transition: none;
            -webkit-transition: none;
            -ms-transition: none;
            transition: none;
            color: inherit;
            text-decoration: none;
            padding: 0 1em;
            border: 0;
            z-index: 100000;
        }

        .dropotron > li:hover > a {
            background: var(--gold);
            color: #fff;
            padding-left: 25px;
            -webkit-transition: 0.3s ease;
            -ms-transition: 0.3s ease;
            -moz-transition: 0.3s ease;
            -o-transition: 0.3s ease;
            transition: 0.3s ease;  
            z-index: 100000;
        }

        .dropotron > li:first-child {
            border-top: 0;
            z-index: 100000;
        }

.language{
    width: auto;
    height: 14px;
}

/* body */

html{
    scroll-behavior: smooth;
}

body {
    background: var(--darkgray);
}

.container {
    width: 1400px;
}

.wrapper{
    margin-bottom: 0;
    padding: 4em 4em 0em 4em;
}

.section-padding-bottom{
    margin-bottom: 2em;
}

.section-padding-top{
    margin-top: 4em;
}

.minus-padding-bottom{
    margin-bottom: -2em;
}

.nopadding{
    padding: 0;
}

#banner{
    padding:0;
}

#video-banner{
    width: 100%;
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
}

/* .fullscreen-button {
    background-color: rgba(0, 0, 0, 0.2);
    right: 5px;
    top: 5px;
    border-radius: 10px;
  }

/* Fullscreen button */

.fullscreen-button{
    transition: 150ms;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
    border-radius: 50%;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
  }
  
/* Videoframes */

.portfoliovideo{
    width: 100%;
    background-color: var(--gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
}

.youtubevideoframe{
    width: 100%;
    background-color: var(--gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    aspect-ratio: 16 / 9;
}

.portfolio-item{
    padding-top: 50px;
    padding-bottom: 50px;
}

.portfolio-item-info-left{
    text-align: right;
}

.portfolio-item-info-right h2{
    margin-left: -5px;
}

.portrait{
    width: 80%;
    margin-top: 30px;
    border-radius: 100%;
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
}

/* Prijslijst */

.panel{
    position: relative;
    background-color:#333;
    border-radius: 10px;
    height: 700px;
    text-align: left;
}

.basic{
    border: 2px solid #555;
    margin-top: 30px;
    margin-bottom: 30px;
}

.supreme{
    border: 3px solid var(--gold);
    height: 760px;
}

.standard{
    border: 2px solid #999;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pricetitle{
    width: 100%;
    padding: 20px 20px 20px 40px ;
    border-radius: 10px;
    position: absolute;
    top:30px;
    left:-20px;
}

.pricetitle h4{
    font-size: 30px;
    line-height: 36px;
    padding: 0;
    margin: 0;
}

.pricetitle p{
    font-size: 20px;
    line-height: 20px;
    padding: 0;
    margin: 0;
}

.basic .pricetitle{
    background-color:#555;
}

.supreme .pricetitle{
    background-color:var(--gold);
}

.standard .pricetitle{
    background-color:#999;
}

.panel.basic .pricetitle h4, 
.panel.basic .pricetitle p{
    color:#999;
}

.panel.standard .pricetitle h4, 
.panel.standard .pricetitle p{
    color:var(--darkgray);
}

.whatyouget{
    padding: 160px 40px 40px 40px;
}

.whatyouget h5{
    color: #fff;
    font-weight: bold;
}

.boldgold{
    color:var(--gold);
    font-weight: bold;
}

.pricetag{
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
    color:#fff;
}

.customerfavorite{
    position: absolute;
    bottom: -30px;
    background-color: #999;
    border-radius: 10px;
    padding: 10px;
    left:50%;  
    transform: translateX(-50%);
    min-width: 260px;
    text-align: center;
}

.customerfavorite h5{
    margin: 0;
    color:var(--darkgray);
    font-size: 20px;
    font-weight: bold;
}

/* Contact */

.center-divs{
    text-align: center;
}

.contactinfo-cols{
    padding-top: 2em;
    padding-bottom: 2em;
}

.contactinfo-col{
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
}

.contactinfo{
    background-color: var(--nearblack);
}

.contactinfo-wrapper{
    padding: 2em 4em 2em 4em;
}

.contactinfo-button{
    background-color: transparent;
}

.contactinfo-item{
    padding-left: 15px;
}

.contactinfo-item .icon{
    float: left;
    color: var(--gold);
    font-size: 32px;
    line-height: 60px;
    padding-right: 10px;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
}

.contactinfo-item .link-label{
    padding-left: 15px;
    float: left;
    color: #fff;
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    fill: #fff;    
    line-height: 60px;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
}

.contactinfo-item:hover > .link-label{
    color: var(--darkgold);
    fill: var(--darkgold);
    text-decoration: underline;
}

.contactinfo-item:hover > .icon{
    color: var(--darkgold);
    fill: var(--darkgold);
}


/* Form */

.fullwidth{
    width: 100%;    
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    border-radius: 10px;
    background-color: #fff;
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    color: var(--darkgray);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--gold);
}

.message {
    display: none; /* Initially hidden */
    color:#fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    fill:#fff;
    border-radius: 10px;
    margin:0;
    padding: 0px 10px;
    border:0;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
    min-width: 10em;
    padding-bottom: 15px;
}
.success {
    background-color: rgb(16, 185, 16);
}
.error {
    background-color: rgb(161, 19, 19);
}

/* Google maps iframe styling */

.mapcontainer{
    position: relative;
    box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
}

.nap-mapoverlay{
    position: absolute;
    top:10px;
    left:10px;
    z-index: 10000000;
    width: 310px;
    height: 102px;
    padding-left:15px;
    background-color: var(--gold);
    border-radius: 5px;
    pointer-events: click;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
}

.nap-mapoverlay:hover{
    background-color: var(--darkgold);
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
}

.map{
    width: 100%;
    height: 400px;
    color-scheme: dark !important;
    filter: grayscale(100%) invert(92%) contrast(100%)!important;
    -webkit-filter: grayscale(100%) invert(92%) contrast(100%)!important;
    margin:0;
    padding: 0;
    margin-bottom: -10px;
    opacity: 0.65;
    background-color: #000;
    background: #000;
}

.mapcontainer h4{
    color: #fff;
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    fill: #fff;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.5em;
}

.mapcontainer h5{
    color: #fff;
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
    fill: #fff;  
    margin-bottom: 0.5em;
    line-height: 1.5em;
}

.route-icon{
    position: absolute;
    bottom:15px;
    right:15px;
    top:15px;
    padding-left: 10px;
    border-left: 1px solid #fff;
    text-align: center;
    line-height: 1.5em;
}

.route-icon i{
    color: #fff;
    fill: #fff; 
    font-size: 32px;
}

.mapmarker{
    width: 100%;
    position: absolute;
    text-align: center;
    line-height: 380px;
    z-index: 1000000;
}

.locations{
    width: 100%;
    position: absolute;
    top:60%;
    text-align: center;
    z-index: 1000000;   
    text-shadow: 6px 6px 12px rgba(0,0,0,0.9);
    line-height: 40px;
    color: var(--gold);
    fill: var(--gold);
}

.locations h4{
    font-size: 30px;
    margin-bottom: 0;
}

.locations h5{
    font-size: 20px;
}

.mapmarker i{
    color: var(--gold);
    font-size: 40px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

i.dot{
    position: absolute;
    line-height: 356px;
    color: #fff;
    font-size: 16px;
    margin-left: 7px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0);
}

/* Footer */

#footer {
    background-color:var(--nearblack);
    color: var(--gold);
    padding: 1em;
}

footer .wrapper{
    padding-top: 0;
    padding-bottom: 0;
}

.logo{
    width: 100px;
    height: 55px;
    object-fit: fill;
}

h2.slogan{
    font-size: 20px;
    text-transform: uppercase;
    line-height: 60px;
    padding: 0;
}

@media screen and (min-width: 840px) {

    .logo{
        float: left;
    }

    h2.slogan{
        float: right;
    }

}

.maxheight57{
}

/* Footer icons */

#footer ul{
    margin: 0;
}

.icon.circle{
    background-color: var(--gold);
    color: #fff;
    transform-origin: 50% 100%;
    transform: scale(1);
}

.icon.circle:hover{
    background-color: var(--darkgold);
    transform: scale(.9);
    transform-origin: 50% 100%;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;  
}

@media screen and (max-width: 1360px) {

    .row > .col-6-1360{
        width: 50%;
    }

}

/* Mobile responsive */

@media screen and (max-width: 840px) {

    .row > .col-12-narrower {
        width: 100%;
    }

    /* Typography */

    header{
        text-align: center;
        padding: 0px 10px 25px 10px;
    }

    h1{
        font-size: 55px;
        line-height: 55px;
        padding: 0 0 30px 0;
    }

    h2{
        font-size: 40px;
        line-height: 40px;
        padding-top: 40px;
    }

    p{
        padding-bottom: 0px;
    }

    /* Navbar menu */

    #navButton{
        background-color: var(--nearblack);
    }

    .navbar-background{
        position: fixed;
        background-color: var(--nearblack);
        height: 60px;
        width: 200%;
        z-index: 10000;
        top: 0;
    }

    .mobile-logo{
        display: block;
    }

    .mobile-language{
        display: block;
    }

    #navButton .toggle {
        right: 0;
    }

    #navButton .toggle::before {
        right:0px;  
        color: var(--gold);
        opacity: 1;
        width: 60px;
        height: 60px;
        line-height: 40px;
    }

    #navButton .toggle::after {
        background: 0;
    }

    #navPanel{
        background: var(--nearblack)
    }

    #navPanel .link{
        font-size: 18px;
        padding-left: 10px;
    }

    #navPanel .link.submenu > a::before {
        content: '\f107';
        margin-right: 0.65em;
    }

    #navPanel .link:last-child {
        border-top: 0;
    }

    body.navPanel-visible #page-wrapper {
        -moz-transform: translateX(-275px);
        -webkit-transform: translateX(-275px);
        -ms-transform: translateX(-275px);
        transform: translateX(-275px);
    }

    /* Portfolio videos mobile styling */

    #video-banner{
        width: 140%;
        left: -20%;
        position: relative;
        margin-top: 60px;
    }

    .wrapper {
        margin-bottom: 0;
        padding: 1em 0em 1em 0em;
    }

    .button,
    input[type="submit"]{
        min-width: 6em;
        max-width: 8em;
        line-height: 3em;
    }
    ul.buttons li {
        display: inline-block;
    }

    .portfolio-item {
        padding-top: 25px;
        padding-bottom: 25px;
        margin: 0;
    }

    .portfoliovideo,
    .youtubevideoframe{
        border-radius: 0px;
    }

    .portfolio-item-info-left,
    .portfolio-item-info-right{
        padding-top: 0;
    }

    /* Swap portfolio div positions on mobile */

    .swapcontainer {
        display:flex;
        flex-direction: column-reverse;
    }

    .divtoswap1,
    .divtoswap2,
    .divtoswap3 {
        height: auto;
    }

    /* Over-mij */

    .portrait{
        width: 40%;
        margin-left: 30%;
        margin-top: 0;
    }

    /* Prijslijst */

    .panel{
        margin: 0 20px;
        height: auto;
        padding-bottom: 100px;
    }

    h2.pricetag{
        font-size: 50px;
    }

    /* Contact */

    form{
        padding: 0em 1em;
    }

    .contactinfo-cols {
        padding-top: 0em;
    }

    .contactinfo-item {
        padding-left: 20px;
      }

    .contactinfo{
        padding-bottom: 25px;
        display: none;
    }

    .contactinfo-wrapper{
        padding: 2em 1em 2em 1em;
    }

    .contactinfo-item{
        height: 40px;
    }

    /* Form */

    input[type="text"],
    input[type="password"],
    input[type="email"],
    textarea {
        border-radius: 10px;
        background-color: #fff;
        font-family: "DM Sans", Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        letter-spacing: normal;
        color: var(--darkgray);
    }

    /* Footer */

    .footercol{
        padding-top: 15px;
    }
    
    h2.slogan{
        line-height: 40px;
    }
}