@import 'main-variables.css';
@font-face {
    font-family: regular-text-light;
    src: url(../assets/fonts/regular-text/teen\ lt.ttf);
}
@font-face {
    font-family: regular-text-light-italic;
    src: url(../assets/fonts/regular-text/teen\ lt\ it.ttf);
}
@font-face {
    font-family: regular-text-bold;
    src: url(../assets/fonts/regular-text/teen\ bd.ttf);
}


* {
    font-family: regular-text-light;
}

h1{
    padding-top: 2.8rem;
    margin-top: 0;
    font-size: 3rem;
    color: var(--page-highlight-color);
}

input:-webkit-autofill {
    background-color: var(--page-lowlight-color-offset-low)!important;
}

a {
    color: var(--page-highlight-color-offset-high);
}

body, html {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

.btn {
    background-color: var(--page-highlight-color);
}
.btn:hover {
    background-color: var(--page-highlight-color-offset-high);
}
.btn:focus {
    background-color: var(--page-highlight-color);
}

.highlight-text {
    font-weight: 800;
    font-size: 18px;
    color: var(--page-highlight-color-offset-high);
}

.progress {
    position: absolute;
    margin: 0;
    top: 0;
    background-color: var(--page-lowlight-color-offset-high);
}
.progress .indeterminate {
    background-color: var(--page-highlight-color);
}

.sidenav li > a {
    font-size: 20px;
}

table.highlight > tbody > tr {
    transition: all 0.25s ease-in-out;
}

table.highlight > tbody > tr:hover {
    background-color: var(--page-lowlight-color);
    cursor: pointer;
}

table.highlight > tbody > tr:hover > td:nth-child(2) {
    font-weight: bold;
}

table > tbody > tr > td:nth-child(2) {
    color: var(--page-highlight-color-offset-high);
}

.sidenav-overlay {
    z-index: 0;
}

.container {
    width: 100%;
}

nav {
    background-color: var(--page-highlight-color);
}

nav ul a {
    font-size: 1.5rem;
}

/*start-up-animation*/
.start-up-animation {
    opacity: 0;
    transition: opacity 1.5s;
}
.start-up-animation.end {
    opacity: 1;
}

/*end start-up-animation*/

/*Parallax*/
.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

.blinder {
    position: absolute;
    height: 100%; 
    width: 100%;
    background-color: var(--page-lowlight-color-offset-low);
    opacity: 0.5;
}

.spacer{
    height: 50px;
    background-color: white;
    border-bottom: 2px solid var(--page-highlight-color);
}

.blinder.o75 {
    opacity: 0.75;
}

/*header ///page-header */
figure {
    transition: filter 1s;
}

.page-header h1 {
    position: absolute;
    top: calc(50vh - var(--page-navbar-height) - 120px);
    font-weight: bold;
    font-size: 5em;
    color: white;
    text-align: center;
    width:100%;
    height: 100px;
}

.page-header h3 {
    position: absolute;
    top: calc(50vh - var(--page-navbar-height) + 50px);
    font-weight: bold;
    font-size: 2.5em;
    color: white;
    text-align: center;
    width:100%;
    height: 100px;
}

.page-header span.header-underline {
    position: absolute;
    top: calc(50vh - var(--page-navbar-height) + 200px);
    width: 0%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 5px;
    background-color: var(--page-highlight-color);
    transition: width 1s;
}

/*End-header*/

/*Navbar*/

.page-navbar {
    position: absolute;
    height: calc(var(--page-navbar-height));
    border-top: 2px solid var(--page-highlight-color);
    width: 100%;
    background-color: var(--page-lowlight-color);
    bottom: 0;
}

/*Style sticky on scroll -> header.js*/
.page-navbar.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 10;
}

.sticky + .first-section {
    padding-top: var(--page-navbar-height);
}
/*End sticky*/

.page-navbar ul.page-navbar-navs {
    height: 100%;
    padding:0;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    list-style-type: none;
}

.page-navbar ul.page-navbar-navs li {
    float: left;
    margin-right: 10px;
}

.page-navbar ul.page-navbar-navs li:last-child {
    margin-right: 0px;
}

.page-navbar ul.page-navbar-navs li a {
    font-size: 1.5em;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: color 0.5s;
}

.page-navbar ul.page-navbar-navs li a:hover {
    color: var(--page-highlight-color);
    background-color: var(--page-lowlight-color-offset-high);
}

.page-navbar ul.page-navbar-navs li a span.logo-i-b i {
    font-weight: bold;
}

/*End navbar*/

/*Section*/
section {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    border-bottom: 2px solid var(--page-highlight-color);
    color: var(--page-highlight-white);
}
.section-content {
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    min-height: 100vh;
}

section#contact, #fotos {
    height: 100%;
    min-height: 0px;
}

section#contact {
    border-bottom-color: var(--page-lowlight-color-offset-high);
}

section#footer {
    height: 100%;
    min-height: 0px;
    background-color: var(--page-highlight-color);
}

section#footer > .dark-bar {
    height: 25px;
    background-color: var(--page-lowlight-color);
    box-shadow: inset 0 3px 2px 0 rgba(0,0,0,0.20), 0 0px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    transform: rotate(180deg);
}

/*End section*/

/*Misc*/
#back-to-top {
    position: fixed;
    opacity: 0;
    bottom: 100px;
    right: 5vw;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background-color: var(--page-lowlight-color);
    border: 1px solid var(--page-lowlight-color-offset-low);
    transition: all 0.5s;
    cursor: pointer;
}

#back-to-top:hover {
    background-color: var(--page-highlight-color);
    border-color: var(--page-lowlight-color-offset-high);
}

#back-to-top > i {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: White;
}

/*Page Specifiek*/
/*Over mij*/

#wie-ben-ik h1{
    margin-bottom: 50px;
}

.profiel-image > img {
    width: 100%;
}

.profiel-content p, i {
    font-size: 16px;
    line-height: 25px;
}

.profiel-footer {
    margin-bottom: 0;
}

.profiel-footer > div > h2{
    font-size: 2rem;
    color: var(--page-highlight-color);
    margin-bottom: 5px;
}

.profiel-footer > div > i {
    font-size: 13px;
}

.profiel-footer > div > ul > img {
    float: left;
    margin-right: 20px;
    filter: invert(60%) sepia(52%) saturate(1828%) hue-rotate(169deg) brightness(105%) contrast(101%)
}

/*Fotos*/
#fotos {
    background-color: var(--page-lowlight-color-offset-high);
}

#arrows {
    position: absolute;
    top: 50%;
    width: 100%;
}

#arrows > .btn {
    position: absolute;
    height: 60px;
    width: 30px;
}

#arrows > .btn > i{
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#arrows > .volgende {
    right: 30px;
}

#arrows > .vorige {
    left: 30px;
}

.likes {
    position: absolute;
    top: 0;
    left: 0;
}

.likes > span {
    position: absolute;
    top: 45%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: White;
    font-weight: bold;
}

.likes i {
    color: var(--page-highlight-color);
}
/*end Fotos*/

/*Prijslijst*/
#prijslijst > div > i {
    position: relative;
    display: block;
}
#prijslijst > div > i:first-of-type {
    margin-top: -20px;
    margin-bottom: 20px;
}

#prijslijst b {
    font-size: 18px;
}

#prijslijst p.combine-with-header {
    margin-top: 5px;
}

/*end Prijslijst*/

/*Contact*/
#contact {
    background-color: var(--page-lowlight-color-offset-high);
}

#contact > div > i {
    position: relative;
    display: block;
    margin-top: -20px;
    margin-bottom: 20px;
}

#contact p {
    color: var(--page-highlight-white);
}

#contact td {
    color: var(--page-highlight-white);
}

#contact i {
    color: var(--page-highlight-white);
}

#contact b {
    color: var(--page-highlight-color);
    margin-bottom: 20px;
    display: block;
}

/*end Contact*/


  /* label color */
.input-field label {
    color: white!important;
}
.input-field input {
    color: white!important;
}
.input-field textarea {
    color: white!important;
}
/* label focus color */
.input-field input + label {
    color: var(--page-highlight-color-offset-high)!important;
}
/* label underline focus color */
.input-field input:focus {
    border-bottom: 1px solid var(--page-highlight-color-offset-high)!important;
    box-shadow: 0 1px 0 0 var(--page-highlight-color-offset-high)!important;
}

/* label focus color */
.input-field textarea + label {
    color: var(--page-highlight-color-offset-high)!important;
}
/* label underline focus color */
.input-field textarea:focus {
    border-bottom: 1px solid var(--page-highlight-color-offset-high)!important;
    box-shadow: 0 1px 0 0 var(--page-highlight-color-offset-high)!important;
}

/* icon prefix focus color */
.input-field .prefix.active {
    color: var(--page-highlight-color-offset-high)!important;
}


/*Media -query- ipad+desktop*/
@media only screen and (min-width: 993px) {
    .section-content {
        padding: 0 15px 0 15px;
    }
    
    .carousel .carousel-item {
        height: 400px;
        width: 400px;
    }
    .backgroundimage {
        z-index: -10;
        position: absolute;
        width: 100%;
        height: 100%;
        background-attachment: fixed;
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .backgroundimageblinder {
        z-index: -9;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.5;
    }
}

/*Media -query- devices*/
@media only screen and (max-width: 992px) {
    #navbar {
        z-index: 1000;
    }
    nav .brand-logo {
        font-size: 5vw;
    }
    .img-small {
        width: 75%!important;
        margin-left: calc(25%/2);
        margin-bottom: 20px;
    }
    .carousel .carousel-item {
        height: calc(100vw - 50px);
        width: calc(100vw - 50px);
    }
    .mobile-header {
        height: calc(100vh - 120px);
        margin: 0;
        background-position: center 0;
    }

    .section-content {
        background-color: rgba(0, 0, 0, 0.80);
    }

    body {
        background-image: url('/images/mobile/image2.jpg');
        background-attachment: scroll;
        background-position: left top;
        background-size: contain;
    }
    .row .col.s12 {
        margin-bottom: 20px;
    }
}