
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coming+Soon&family=Electrolize&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*Colorpalet: https://goodpalette.io/522e05-167df2-bdb6ae*/


:root {
    --header-height: 3.5rem;
    --body-font: "Poppins", sans-serif;
    --second-font: "Electrolize", cursive;

    /*Infos: 0.5rem = 8px; 1rem = 16px*/

    /*=====COLORS ======*/
    --first-color: hsla(32, 88%, 17%, 0.733);
    --gradient-color: linear-gradient(90deg,
                       hsl(210, 55%, 20%),
                        hsl(0, 0%, 69%));
    --title-color: hsl(210, 52%, 20%);
    --text-color:  hsl(210,24%,15%);
    --white-color: #fff;
    --body-color: rgb(241, 241, 241);
    --shadow-color: rgba(210, 210, 210, 0.753);
    

    /*===== FONT WEIGHTS ======*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /*===== z index ======*/
    --z-zooltip: 10;
    --z-fixed: 100;
    
}


/*===== Responsive Font weights ======*/
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 4rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

/*===== BASIC ======*/
* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {

    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */

    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    background-color: var(--body-color);
    color: var(--text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*===== Resuable ======*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;   
}

/*===== Header/NAV BAR ======*/
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--body-color);
    z-index: var(--z-fixed);
}

.nav{
    margin-top: 1rem;
    margin-right: 1rem;
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo{
    width: 60px;
}

.nav__toggle,
.nav__close{
    display: inline-flex;
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
}

/*===== Header/NAV BAR (mobile) ======*/
@media screen and (max-width: 1023px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        background-color: var(--body-color);
        width: 100%;
        box-shadow: 0 1px 16px hsla(210, 55%, 24%, .1);
        padding-block: 3.5rem 2rem;
        display: flex;
        flex-direction: column;
        row-gap: 2.5rem;
        transition: top 0.4s;
    }
}

.nav__list{
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 1rem;
}

.nav__link {
    color: var(--title-color);
    transition: color .3s;
}

.nav__link:hover{
    color: var(--first-color);
}

.nav_buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: .75rem;
}

.nav__close{
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.info {
    color: var(--shadow-color)
}


/*===== Show Menu ======*/
.show-menu {
    top: 0;
}

/*===== Blury Menu ======*/
.nkh-header {
    box-shadow: 0 1px 16px hsla(210, 55%, 24%, .1);
}


#preise-header {
	padding-top: 3rem;
}

/*===== EVERYTHING BIGGER THEN A PHONE/IPAD ======*/
@media screen and (min-width: 1023px) {
    
	#preise-header {
		padding-top: 5px;
	}

    .nav{
        height: calc(var(--header-height) + 2rem);
        column-gap: 1rem;
    }
    .nav__toggle,
    .nav__close{
        display: none;
    }
    .nav__menu{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav__list{
        padding-left: 5rem;
        flex-direction: row;
        column-gap: 3rem;
    }
    .nav__logo {
        width: 90px;
    }
    .home__content {
        min-width: 1023px;
    }
    .home__data{
        row-gap: 1rem;
    }
    .home__subtitle {
        font-size: var(--normal-font-size);
    }
    .home__description {
        margin-bottom: 3rem;
    }

   .footer-div {
        background-color: var(--first-color);
        width: 100vw;
        position: fixed;
        bottom: 0;
        z-index: 99;
   }

   #quotes {
    top: 5vh;
    }
}

#quotes {
    font-weight: 400;
    position: relative;
    top: 2vh;
}



/*TODO: FIX -> Handy pictures always visable (in color)*/


/* Code fixed */
h1 {
    color: var(--title-color);
  }
#pictures-title {
margin-top: 5vh;
}
.grid-container {
    columns: 5 200px;
    column-gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
    div {
        width: 150px;
        margin: 0 1.5rem 1.5rem 0;
        display: inline-block;
        width: 100%;
        border: solid 2px black;
        padding: 5px;
        box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
        border-radius: 5px;
        transition: all .25s ease-in-out;
        &:hover img {
        filter: grayscale(0);
        }
        &:hover {
            border-color: coral;
        }
        img {
            width: 100%;
            border-radius: 5px;
            transition: all .25s ease-in-out;
        }
        p {
            margin: 5px 0;
            padding: 0;
            text-align: center;
            font-style: italic;
        }
    }
}
  
  
/* Media query to target handheld and tablet devices */
@media (max-width: 768px) {
    .grid-container div img {
        filter: grayscale(0);
    }
}

.unselectable {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}
  

.footer-div {
    background-color: var(--first-color);
    width: 100vw;
    position: fixed;
    bottom: 0;
    z-index: 99;
    text-align: center;
    padding: 1rem;
    color: var(--white-color);
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

.footer-content a {
    color: var(--white-color);
    margin: 0 10px;
}



.info {
    color: #797878;
}
