﻿/*Background Start*/
html, body {
    margin: 0;
    padding: 0;
}


/*Background End*/
/*Text Start*/
@font-face {
    font-family: 'Mont';
    src: url(../../assets/fonts/Montserrat-Regular.ttf) format('truetype');
}

/* latin */
@font-face {
    font-family: 'Handwritten';
    font-style: normal;
    font-weight: 400;
    src: local('Amatic SC Regular'), local('AmaticSC-Regular'), url(https://fonts.gstatic.com/s/amaticsc/v9/DPPfSFKxRTXvae2bKDzp5FtXRa8TVwTICgirnJhmVJw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

@font-face {
    font-family: 'Swanky';
    font-style: normal;
    font-weight: 400;
    src: local('Swanky and Moo Moo'), local('SwankyandMooMoo'), url(https://fonts.gstatic.com/s/swankyandmoomoo/v6/orVNZ9kDeE3lWp3U3YELuySkjSxz05wIeOBw4IGKuVY.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

.text {
    font-family: Mont;
    margin: 0;
    padding: 0;
}

.text-white{
    color: #EBEEF3;
}

.text-black{
    color: #1B1C1D;
}

.text-size-smallest {
    font-size: 1.1rem;
}

.text-size-small {
    font-size: 1.4rem;
}

.text-size-normal {
    font-size: 1.8rem;
}

.text-size-big {
    font-size: 2.2rem;
}

.text-size-caption{
    font-size: 2.5rem;
    margin-bottom: 2%;
}

.text-caption{
    font-size: 6rem;
    color: #1B1C1D;
}
.text-subcaption{
    font-size: 4rem;
    color: rgba(27, 28, 29, 0.82);
}

.text-size-logo {
    font-size: 2.9rem;
}


a {
    text-decoration: none;
}
/*Text End*/

/*Header Anfang*/
header{
    position: fixed;
    top: 20px;
    padding: 0;
    width: 100%;
    z-index: 100;
}

#header_logo {
    margin-left: 15px;
}

#logo_text p {
    margin: 0;
    padding: 0;
}


.link {
    color: #DFE4EC;
    font-family: Montserrat;
    transition: 0.7s ease all;
    text-decoration: none;
    margin-right: 25px;
    padding: 0;
}

    .link:hover {
        color: #5482DB;
        transform: scale(1.02);
        transition: 0.5s ease all;
        cursor: grab;
    }

.mlink {
    color: #DFE4EC;
    font-family: Montserrat;
    transition: 0.7s ease all;
    text-decoration: none !important;
    margin-right: 25px;
    padding: 0;
    display: block;
    margin-bottom: 3%;
}

    .mlink i {
        color: white;
    }

    .mlink:first-child {
        margin-top: 5%;
    }

    .mlink:hover {
        color: #5482DB;
        transform: scale(1.02);
        transition: 0.5s ease all;
        cursor: grab;
    }
/*Header End*/

/*Landing Anfang*/
#landing-wrapper{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    background-color: rgba(189, 190, 196, 0.46);
}

#landing-header{
    position: absolute;
    width: 6%;
    left: 5%;
    transform: translateX(-50%);
    padding: 0.5% 0 0.5% 0;
    background-color: rgba(32, 65, 150, 0.91);
    box-shadow: 0px 8px 20px #1B1C1D;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: -20px;
}

#landing-header img, #landing-header p{
    display: inline;
    vertical-align: middle;
}

#landing-header img{
    width: 60px;
}

#landing-page{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#landing-page img{
    margin: 4%;
    width: 450px;
    filter: grayscale(30%);
}

#landing-buttonholder .button{
    padding: 0.5% 0.5%;
    border-radius: 26px;
    display: inline;
    margin: 0 2%;
    cursor: pointer;
    transition: 0.7s;
}

@keyframes animatedButton{
    0%{
        box-shadow: 0px 0px 0px #293053;
    }
    50%{
        box-shadow: 0px 0px 30px #293053;
    }
    100%{
        box-shadow: 0px 0px 0px #293053;
    }
}

#landing-buttonholder #main-button{
    color: #272F75;
    border: 3px solid rgba(39, 48, 117, 0.85);
    animation: infinite 3s animatedButton;
}

#landing-buttonholder #main-button:hover{
    color: #EBEEF3;
    transition: 0.2s;
}

#landing-buttonholder #main-button:hover{
    background-color: rgba(39, 48, 117, 0.8);
    transition: 0.7s;
}

#landing-buttonholder #sub-button{
    color: #626268;
    border: 3px solid rgba(70, 72, 83, 0.55);
}

#landing-buttonholder #sub-button:hover{
    color: #3C3D3F;
    border: 3px solid #293053;
    transition: 0.7s;
}

/*Landing End*/

main{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
}

/*DESCIPTION*/
#description{
    width: 70%;
    margin: 2% auto;
}

/*Pictures*/

#wrapper_picture{
    width: 100%;
    text-align: center;
}

#picutre_window{
    margin: 0 auto;
    width: 100%;
    display: inline-block;

}

#picture_window .wrapper_images{
    display: inline-block;
    overflow: hidden;
    width: 750px;
    height: auto;
    margin: 1%;
}

#lightPicture, #lightPicture2{
    border: 2px solid rgb(156, 67, 67);
    background-color: rgba(192, 79, 59, 0.562);
    border-radius: 10px;
    display: inline-bock;
    padding: 1% 0.5%;
    margin-top: 2%;
    cursor: pointer;
}


#picture_window img{
    width: 100%;
    height: auto;
    transition: .5s;
}

#morephotos{
    color: #272F75;
    border: 3px solid rgba(39, 48, 117, 0.85);
    border-radius: 20px;
    transition: 0.7s;
    padding: 0.5%;
}

#morephotos:hover{
    background-color: rgba(39, 48, 117, 0.8);
    color: white;
    transition: 0.7s;
}

/*Products*/
#wrapper_product{
    text-align: center;
    margin-top: 5%;
}

#products{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.product{
    border: 2px solid #1F2123;
    border-radius: 10px;
    flex-basis: 40%;
}

.product .productheader{
    text-align: center !important;
    padding: 0 !important;
    width: 100%;
    background-color: #272F75;
    color: white;
}

.product p{
    text-align: left;
    padding-left: 2%;
    margin: 2% 0;
}

.product img{
    width: 400px;
    margin: 3% 0;
}

#buttons{
    margin: 3% 0;
}

main .button{
    border: 2px solid #272F75;
    color: #293053;
    border-radius: 20px;
    padding: 0.5%;
    margin: 0 2%;
    transition: 0.7s;
}

main .button:hover{
    background-color: #293053;
    color: white;
    transition: 0.7s;
}

/*Producttext*/
#producttext{
    width: 70%;
    margin: 2% auto;
}

#producttext .text-size-big{
    margin-bottom: 1%;
}

#wrapper_koffer{
    margin-top: 3%;
    background-color: #203ea5;
    padding-bottom: 4%;
}

#kofferloesung{
    padding: 2% 0;
    width: 70%;
    margin: 0 auto;
    color: white;   
}

#kofferloesung img{
    text-align: center;
    margin: 0 auto;
    width: 600px;
    display: block;
    margin-top: 3%;
}

#kontakt{
    padding: 4% auto;
    text-align: center;
    color: white;
}

#kontakt .button{
    color: white;
    margin: 0 auto;
    margin-top: 2%;
    display: block;
    width: 15%;
    background-color: #293053;
}


/*Footer*/
footer {
    background-color: #28292A;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: auto;
    text-align: center;
    color: #1F2123;
    clear: both;
}

    footer p, a, i, span {
        color: #AAADAF;
    }

        footer p:first-child {
            margin-top: 0;
            padding-top: 0;
        }

        footer p:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            color: #6D7073;
        }


/*Handy und kleine Bildschirme*/
@media only screen and (min-width : 320px) and (max-width: 767px) {
    html{
        font-size: 8px;
    }

    .text-caption{
        font-size: 5.5rem;
        color: #1B1C1D;
    }

    #landing-header{
        width: 20%;
        left: 15%;
    }

    #landing-header img{
        width: 35px;
    }

    #landing-page img{
        width: 215px;
    }

    #landing-buttonholder{
        margin-top: 5%;
    }

    #landing-buttonholder .button{
        padding: 1.4% 2%;
        border-radius: 26px;
        display: inline;
        margin: 0 2%;
        cursor: pointer;
        transition: 0.7s;
    }

    #description{
        width: 80%;
        margin: 4% auto;
    }

    #picture_window .wrapper_images{
        width: 280px;

    }

    #morephotos{
        margin: 0 auto;
        margin-top: 3%;
        display: block;
        padding: 1%;
        width:70%;
    }

    #wrapper_product{
        text-align: center;
        margin-top: 10%;
    }

    #products{
        display: block;

    }

    .product{
        width: 90%;
        margin: 3% auto;
    }

    .product img{
        width: 200px;
        margin: 3% 0;
    }

    main .button{
        display: block;
        width: 80%;
        margin: 4% auto;

    }

    #producttext{
        margin: 8% auto;
        width: 80%;
    }

    #producttext .text-size-big{
        margin-bottom: 5%;
    }

    #kofferloesung{
        margin-top: 8%;
        padding-top: 5%;
        width: 80%;
    }

    #kofferloesung img{
        width: 220px;
    }

    
    #kontakt .button{
    margin-top: 4%;
    width:30%;
    }
}
    
/*Tablet*/
@media only screen and (min-width : 768px) and (max-width: 1023px) {
    html{
        font-size: 12px;
    }

    .text-caption{
        font-size: 5.7rem;
        color: #1B1C1D;
    }

    #landing-header{
        width: 12%;
        left: 7%;
    }

    #landing-header img{
        width: 50px;
    }

    #landing-page img{
        width: 300px;
    }

    #landing-buttonholder .button{
        padding: 0.6% 1%;
    }

    #description{
        width: 75%;
        margin: 4% auto;
    }

    #picture_window .wrapper_images{

        width: 550px;

    }

    #morephotos{
        margin: 0 auto;
        margin-top: 3%;
        display: block;
        padding: 1%;
        width:40%;
    }

    #products{
        display: block;

    }

    .product{
        width: 70%;
        margin: 3% auto;
    }

    .product img{
        width: 300px;
        margin: 3% 0;
    }

    main .button{

        border-radius: 20px;
        padding: 1%;
        margin: 0 2%;
        transition: 0.7s;
    }

    #producttext{
        margin: 6% auto;
    }

    #kofferloesung img{
        width: 400px;
    }
}
    
/*Tablet Quer or Laptop*/
@media screen and (min-width: 1024px) and (max-width: 1440px) {
    html{
        font-size: 14px;
    }

    nav.desktop {
        clear: both;
        position: absolute;
        right: 30px;
        top: 20px;
        margin: 0;
        padding: 0;
    }

    nav.mobile {
        display: none;
    }

    #logo {
        width: 90px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
    }

    #header_logo {
        width: 50%;
    }

    #landing-header{
        width: 10%;
        left: 7%;
    }

    #landing-page img{
        width: 400px;
    }

    #landing-buttonholder .button{
        padding: 0.6% 1%;
    }

    #description{
        width: 75%;
        margin: 4% auto;
    }

    #morephotos{
        margin: 0 auto;
        margin-top: 3%;
        display: block;
        padding: 1%;
        width: 30%;
    }

    #products{
        display: block;

    }

    .product{
        width: 70%;
        margin: 3% auto;
    }

    .product img{
        width: 300px;
        margin: 3% 0;
    }

    #producttext{
        margin: 5% auto;
    }
}