﻿/****************** MAIN STYLES ********************/
/* General
-------------------------------------------------- */

:root {
    --orange: #fc9003;
    --white: #ffffff;
    --grey: #e5e5e5;
}

html {
    font-size: 22px;
    color: var(--white);
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    position: relative;
    min-height: 100%;
    font-family: 'Roboto Slab', serif;
    background: black;
    scroll-behavior: smooth;
}

main, .parallax {
    scroll-behavior: smooth;
}

h1 {
    font-size: 55px;
    font-weight: 700;
}

h2 {
    font-size: 52px;
    font-weight: 400;
}

h3 {
    font-size: 30px;
    font-weight: 400;
    color: var(--orange);
}

h1, h2 {
    font-family: 'Lobster', cursive;
    color: var(--orange);
}

p {
    font-weight: 300;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

a, a:active, a:visited, a:focus {
    color: var(--orange);
    cursor: pointer;
}

    a.btn, a:active, a:visited, a:focus {
        color: var(--white);
    }

    a:hover, .orangeSection a:hover {
        color: var(--grey);
    }

    a:hover, a:active {
        text-decoration: underline;
    }

ul {
    padding-inline-start: 25px;
}

hr {
    border-top: 1px solid rgb(255 255 255);
}

.modal {
    color: black;
}

.table {
    margin-top: 20px;
    background-color: black;
}


/* Other classes
-------------------------------------------------- */
.align-middle {
    position: absolute;
    top: 40%;
    left: 50%;
    -ms-transform: translateY(-50%, -50%);
    transform: translate(-50%, -50%);
}

.border-top {
    border-top: 3px solid var(--white);
}

.border-bottom {
    border-bottom: 3px solid var(--white);
}

.padding-top-75px {
    padding-top: 75px;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

main ion-icon, main i {
    font-size: 38px;
}
/* Buttons
-------------------------------------------------- */
.btn {
    border-radius: 25px;
    min-width: 140px;
    height: 50px;
    color: var(--white);
    font-size: 20px;
}

    .btn:hover {
        color: #e1e1e1;
        text-decoration: none;
    }

.btn-orange {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.btn-black {
    background-color: #000;
}

.btn-file {
    background-color: var(--orange) !important;
    color: var(--white) !important;
    height: 42px;
    padding-top: 5px;
    border-color: var(--orange);
}
/****************** END MAIN STYLES ********************/

/****************** HEADER ********************/
header {
    height: 75px;
    background: transparent;
    position: fixed;
    z-index: 4;
    max-width: 100vw;
}

.navbar.collapse a, .navbar.collapse a:focus, .navbar.collapse a:visited {
    color: var(--white);
}

    .navbar.collapse a:hover, .navbar.collapse a:active {
        color: var(--orange);
    }

a.navbar-brand {
    color: var(--orange);
    font-family: 'Lobster', cursive;
    text-align: left;
}

    a.navbar-brand img {
        max-height: 40px;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--white);
    background-color: var(--orange);
}

.navbar-toggler {
    border: 1px solid white;
    padding: .25rem .75rem;
    font-size: 25px;
    line-height: 1.1;
    color: var(--white);
}

.darkNav {
    background: #000 !important;
}

.form-control {
    /*color: #e1e1e1;*/
    font-size: 15px;
    border: none;
    border-radius: 0px;
}

.logIcon {
    font-size: 25px;
    margin-top: 3px;
}
/****************** END HEADER ********************/

/****************** HOME PAGE ********************/
/* Sections
-------------------------------------------------- */
/********* General *********/
.whiteSection {
    color: var(--white);
    min-height: 100vh;
}

    .whiteSection h1, .whiteSection h2, .whiteSection h3 {
        color: var(--orange);
    }

    .whiteSection h1 {
        font-size: 80px;
    }

.darkSection {
    background: #000;
    color: var(--white);
}

.orangeSection {
    background: var(--orange);
    color: var(--white);
}

    .orangeSection h1, .orangeSection h2, .orangeSection h3, .orangeSection p, .orangeSection a {
        color: var(--white);
    }

.content {
    z-index: 3;
    position: relative;
}

.mainBackground, .warumBackground, .arbeiteBackground, .richtigBackground, .kennenBackground {
    z-index: -2;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center;
}

    .mainBackground:after, .warumBackground:after, .arbeiteBackground:after, .richtigBackground:after, .kennenBackground:after {
        z-index: -1;
        width: 100%;
    }

#infoContent h1 {
    font-weight: 300;
    padding: 0;
    margin: 0;
    line-height: 1.6;
    font-size: 22px;
    font-family: 'Roboto Slab', serif;
    color: var(--white);
}
/********* Section 1 *********/
/* General */
#section-1 {
    height: 100vh;
    overflow: hidden;
}

    #section-1 .content {
        height: 100vh;
        top: 75px;
    }

.logoTop {
    max-height: 80px;
}
/* Backgrounds */
.mainBackground:after {
    content: "";
    background: rgba(0, 0, 0, .5);
    position: absolute;
    height: 100vh;
}
/* Search Switch */
#section-1 #infoContent {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.1825105042016807) 16%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.1825105042016807) 16%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.1825105042016807) 16%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    transform: scaleY(1);
    transform-origin: top;
    /*
    transition: all 1s cubic-bezier(0.95, 0.06, 0.56, 1);
    */
}
/********* Section 2 *********/
/* General */
#section-2 .content {
    height: 100vh;
}
/* Backgrounds */
.warumBackground {
    background: url(../img/warum-background.jpg);
    position: absolute;
    height: 100vh;
    left: 0;
    filter: sepia(0.2);
    background-position: center;
}

    .warumBackground:after {
        content: "";
        background: rgba(0, 0, 0, .5);
        position: absolute;
        height: 100vh;
        left: 0;
    }
/********* Section 4 *********/
/* General */
#section-4 .content {
    height: 100vh;
}

.aufsteller {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
}
/* Backgrounds */
.richtigBackground {
    background: url(../img/richtig-background.jpg);
    position: absolute;
    height: 100vh;
    left: 0;
    filter: brightness(0.9) sepia(0.3);
    background-position: center;
}

    .richtigBackground:after {
        content: "";
        background: rgba(0, 0, 0, .5);
        position: absolute;
        height: 100vh;
        left: 0;
        z-index: 0;
        width: 100%;
        top: 0;
    }
/********* Section 5 *********/
/* General */
#section-5 .content {
    height: 100vh;
}

#section-5 p {
    min-height: 310px;
}

#section-5 h3 {
    min-height: 95px;
}
/********* Section 6 *********/
/* General */
#section-6 .content {
    height: 100vh;
}
/* Backgrounds */
.kennenBackground {
    background: url(../img/main-background.jpg);
    position: absolute;
    height: 100vh;
    left: 0;
    background-position: center;
}

    .kennenBackground:after {
        content: "";
        background: rgba(0, 0, 0, .5);
        position: absolute;
        height: 100vh;
        left: 0;
        z-index: 0;
        width: 100%;
        top: 0;
    }
/********* Section 7 *********/
#section-7 .content {
    height: 100vh;
}

#section-7.darkSection {
    background: transparent;
}
/* Backgrounds */
.arbeiteBackground {
    background: url(../img/arbeite-background.jpg);
    position: absolute;
    height: 100vh;
    left: 0;
}

    .arbeiteBackground:after {
        content: "";
        background: rgba(0, 0, 0, .5);
        position: absolute;
        height: 100vh;
        left: 0;
    }



#section-searchResultAdmin .mainBackground {
    -webkit-transform: translateZ(-279px) translateY(-325px) scale(2);
    transform: translateZ(-279px) translateY(-325px) scale(2);
}


/* Paralax */

/* General */

.parallax {
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 300px;
    perspective: 300px;
}

.parallax__group {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax__layer--fore {
    -webkit-transform: translateZ(90px) translateY(-61px) scale(.7);
    transform: translateZ(90px) translateY(-61px) scale(.7);
    z-index: 1;
}

.parallax__layer--base {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 4;
}

#group2 .parallax__layer--back {
    -webkit-transform: translateZ(-279px) translateY(-325px) scale(2);
    transform: translateZ(-279px) translateY(-325px) scale(2);
    z-index: 3;
}

.parallax__layer--back {
    -webkit-transform: translateZ(-279px) translateY(-325px) scale(2);
    transform: translateZ(-279px) translateY(-325px) scale(2);
    z-index: 3;
}

.parallax__layer--deep {
    -webkit-transform: translateZ(-593px) translateY(134px) scale(3);
    transform: translateZ(-593px) translateY(134px) scale(3);
    z-index: 2;
}

/* groups */

#group1 {
    z-index: 5; /* slide over group 2 */
}

    #group1 .parallax__layer--base {
        background: url(../img/bg.jpg);
        background-position: center;
    }

#group2 {
    z-index: 3; /* slide under groups 1 and 3 */
}

    #group2 .parallax__layer--back {
        background: rgba(0, 0, 0, 0);
        height: 0;
    }

#group3 {
    z-index: 4; /* slide over group 2 and 4 */
    border-bottom: 150px black solid;
    margin-top: -150px;
}

    #group3 .parallax__layer--base {
        background: rgba(0, 0, 0, 0);
        height: 0;
    }

    #group3 .parallax__layer--fore {
        -webkit-transform: translateZ(91px) translateY(12px) scale(.7);
        transform: translateZ(91px) translateY(12px) scale(.7);
        z-index: 1;
        margin-bottom: 690px;
    }

#group4 {
    z-index: 2; /* slide under group 3 and 5 */
    margin-top: 205px;
}

    #group4 .parallax__layer--deep {
        background: rgb(0, 0, 0);
    }

#group5 {
    z-index: 3; /* slide over group 4 and 6 */
    margin-top: 193px;
}

    #group5 .parallax__layer--base {
        background: rgb(0, 0, 0);
    }

#group6 {
    z-index: 2; /* slide under group 5 and 7 */
}

    #group6 .parallax__layer--back {
        background: rgb(0, 0, 0);
        -webkit-transform: translateZ(-279px) translateY(227px) scale(2);
        transform: translateZ(-279px) translateY(227px) scale(2);
    }

#group7 {
    z-index: 3; /* slide over group 7 */
    margin-top: 230px;
}

    #group7 .parallax__layer--base {
        background: rgb(0, 0, 0);
    }
/****************** END HOME PAGE ********************/

/****************** PROFILE PAGES  ********************/
/* Profile View
-------------------------------------------------- */
/********* General *********/
.businessLogoSmallWrapper {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
}

.businessLogoSmall {
    background: var(--white);
    border: none;
}

.businessLogoMediumWrapper {
    width: 240px;
    height: 240px;
    border: none;
}

.businessLogoMedium {
    background-color: #0e0e0e;
    border: #767676 1px solid;
    padding: 15px;
}

#section-profileView {
    min-height: 100vh;
}

    #section-profileView h2 {
        font-size: 34px;
        font-family: 'Roboto Slab', serif;
        color: white;
    }

        #section-profileView h2.darkSection {
            color: var(--white) !important;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0.65);
            font-family: 'Roboto Slab', serif;
        }

    #section-profileView p {
        font-size: 20px;
    }

        #section-profileView p.darkSection {
            background: rgba(0,0,0,0.65);
            bottom: 0;
            left: 0;
        }

    #section-profileView .map {
        min-height: 150px;
        float: right;
        padding: 0;
    }
    /* Backgrounds */
    #section-profileView .mainBackground {
        position: fixed;
        height: 100vh;
        background-attachment: fixed;
    }
/* Table */
.openingTable {
    border: none;
    color: var(--white);
    font-size: 15px;
}

    .openingTable td, #openingTable tr {
        border: 2px solid #000000;
    }

    .openingTable tbody {
        background: rgba(0,0,0,0.75);
    }

/*Sidebar Links*/
.sideLinks a, .sideLinks a:active, .sideLinks a:visited, .sideLinks a:focus {
    color: var(--orange) !important;
    cursor: pointer;
}

    .sideLinks a:hover {
        color: var(--grey);
    }

    .sideLinks a:hover, .sideLinks a:active {
        text-decoration: underline;
    }

/*Bottom Links*/
.bottomLinks a, .bottomLinks a:active, .bottomLinks a:visited, .bottomLinks a:focus {
    color: var(--white) !important;
    cursor: pointer;
}

    .bottomLinks a:hover {
        color: var(--grey);
    }

    .bottomLinks a:hover, .bottomLinks a:active {
        text-decoration: underline;
    }

@media (min-width: 992px) {
    .sideLinks a, .sideLinks a:active, .sideLinks a:visited, .sideLinks a:focus {
        font-size: 17px;
    }

    .sideLinks ion-icon.link {
        font-size: 22px;
    }
}


/*File Input*/
.btn-kv {
    min-width: 75px;
}

#kvFileinputModal .btn-kv {
    min-width: 75px;
    color: var(--orange);
    height: 43px;
}

.file-zoom-dialog .btn-navigate {
    color: var(--orange);
}

/* Profile View
-------------------------------------------------- */
/********* General *********/
.socialIcon {
    font-size: 45px;
}

#profileImgSlider .carousel-item img {
    animation: none !important;
    -ms-animation: none !important;
    -webkit-animation: none !important;
    -o-animation: none !important;
    -moz-animation: none !important;
}

#profileImgSlider .carousel-item {
    filter: brightness(1) !important;
    max-height: 570px;
    min-height: 570px;
}
ion-icon.link {
    font-size: 25px;
    margin-top: 5px;
}
/******** Modal ********/
.modal .form-control {
    border: 1px solid black;
}
/****************** END PROFILE PAGES ********************/
/****************** Impressum PAGE ********************/
#impressum li, #impressum p {
    font-size: 15px;
}
/****************** END Impressum PAGE ********************/
/****************** AGB PAGE ********************/
#agb li, #agb p {
    font-size: 15px;
}
/****************** END AGB PAGE ********************/
/****************** SEARCH PAGES ********************/
/* Search result styles
-------------------------------------------------- */
/********* General *********/
#section-searchResult {
    min-height: 100vh;
}

    #section-searchResult h3 {
        font-size: 25px;
        height: 2em;
    }

    #section-searchResult h4 {
        font-size: 20px;
        height: 1em;
    }

    #section-searchResult p {
        font-size: 15px;
        height: 1em;
    }

    #section-searchResult .darkSection {
        border-bottom: 1px solid var(--orange);
        background: rgba(0,0,0,0.75);
    }
/* Kacheln */
.searchPanel {
    cursor: pointer;
}
.searchPanelInner {
    min-height: 200px;
}

/* Backgrounds */
#section-searchResult .mainBackground {
    position: fixed;
    height: 100vh;
    background-attachment: fixed;
}

.carousel-inner {
    background: black;
}

.carousel-item {
    filter: brightness(0.25);
}
/* Kacheln */
@media (min-width: 993px) {
    .searchPanel.col-lg-4:nth-child(1) .row, .searchPanel.col-lg-4:nth-child(2) .row, .searchPanel.col-lg-4:nth-child(4) .row, .searchPanel.col-lg-4:nth-child(5) .row, .searchPanel.col-lg-4:nth-child(7) .row, .searchPanel.col-lg-4:nth-child(9) .row {
        margin-right: 15px;
    }
}

@media (max-width: 992px) {
    .searchPanel.col-md-6:nth-child(odd) .row {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .searchPanel {
        margin-left: 15px;
        margin-right: -15px;
    }

        .searchPanel .row {
            margin-right: 15px;
        }
}
/* Search (Admin) result styles
-------------------------------------------------- */
/********* General *********/
#section-searchResultAdmin {
    min-height: 100vh;
}
    /* Backgrounds */
    #section-searchResultAdmin .mainBackground {
        position: fixed;
        height: 100vh;
        background-attachment: fixed;
    }
/* Datatable */
#searchResultAdmin {
    border: none;
    color: var(--white);
    font-size: 20px;
}

    #searchResultAdmin th {
        background: #000;
        color: var(--orange);
        border: none;
        cursor: pointer;
    }

    #searchResultAdmin td, #searchResultAdmin tr {
        border: 2px solid #000000;
    }

    #searchResultAdmin tbody {
        background: rgba(0,0,0,0.75);
    }

#section-searchResultAdmin .pagination {
    float: right;
}

#section-searchResultAdmin .page-link {
    color: var(--orange);
    background-color: var(--white);
    border: none;
    border-radius: 0;
}

#section-searchResultAdmin .page-item.disabled .page-link {
    color: var(--white);
    pointer-events: none;
    cursor: auto;
    background-color: rgb(0 0 0 / 0.75);
    border: none;
}

#section-searchResultAdmin .page-item.active .page-link {
    z-index: 3;
    color: var(--white);
    background-color: var(--orange);
    border: none;
}

#profilList_wrapper ion-icon {
    font-size: 25px;
}

#section-searchResultAdmin .form-control {
    color: #000000;
}
/****************** END SEACH PAGES ********************/

/****************** FOOTER ********************/

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background: #000;
    z-index: 200;
}

    footer .footerLogo {
        font-family: 'Lobster', cursive;
    }



/* Media Queries
-------------------------------------------------- */
@media (max-width: 1200px) {
    #section-5 h3 {
        min-height: 50px;
        font-size: 25px;
    }

    #section-5 p {
        min-height: 200px;
    }

    #section-profileView h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 20px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 32px;
    } 

    .navbar-collapse {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-align: center;
        align-items: center;
    }

    .align-middle {
        position: absolute;
        top: 40%;
        left: 50%;
        -ms-transform: translateY(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 769px) {
    .flip-card {
        float: right;
    }
    .carousel-control-next, .carousel-control-prev {
        margin-top: -300px;
    }
}

@media (max-width: 768px) {
    .logoTop {
        max-height: 60px;
    }

    ul, p, #infoContent h1 {
        font-size: 16px;
    }

    .businessLogoMedium {
        float: left !important;
    }
    #profileImgSlider .carousel-item {
        max-height: unset;
        min-height: unset;
    }
    #group3 {
        margin-top: 90px;
    }
    #group4 {
        margin-top: 0px;
    }
}

@media (max-width: 554px) {
    h1 {
        font-size: 40px;
    }

    h3 {
        font-size: 20px;
    }
}

@media (max-width: 399px) {
    body, p, #infoContent h1 {
        font-size: 16px;
    }

    .align-middle {
        top: 270px;
    }

    #group2 .parallax__layer--back {
        -webkit-transform: translateZ(-279px) translateY(-225px) scale(2);
        transform: translateZ(-279px) translateY(-225px) scale(2);
    }

    ::-webkit-scrollbar {
        width: 4px !important;
    }
}

@media (max-width: 360px) {
    .align-middle {
        top: 250px;
    }
}

@media (max-width: 340px) {
    .align-middle {
        top: 220px;
    }
}

@media screen and (max-width: 768px) and (min-width: 400px) {
    .openingTable {
        float: right;
    }

    .businessLogoMedium {
        float: left;
    }
}

/* scrollbar */

/* width */
::-webkit-scrollbar {
    width: 10px;
    border: solid 2px #000000;
}

/* Track */
::-webkit-scrollbar-track {
    background: #000000;
    border: solid 2px #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: solid 1px var(--orange);
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #000000;
    }
