@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    user-select: none;
    background: linear-gradient(-45deg, #B27D57, #c49474, #8b5e3c, #d4a88a);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    position: relative;
}

.copy{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    color: #23272A;
}

.topLogo{
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5DC; /* Hintergrundfarbe */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
}

.mainHDL{
    color: #8B5E3C; /* Text Farbe */
    font-size: 28px; /* Schriftgröße */
    font-weight: bold; /* Fettschrift */
    font-family: 'Arial', sans-serif; /* Schriftart */

}

.mainHDL:hover{
    color: #A0522D; /* Hover Farbe */
    cursor: pointer; /* Mauszeiger ändert sich */
    text-decoration: underline;
}

.navBar{
    height: 50px;
    width: 100%;
    background-color: #D2B48C; /* Hintergrundfarbe der Navigationsleiste */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
}

.navBar a{
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    text-decoration: none;
    color: #6b482e; /* Link Farbe */
}

/* Über uns Style */

.aboutus_content{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 20px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    color: #333333;
    justify-content: center;
    align-items: center;
}

.textBoxO{
    width: 800px;
}


/* Kontakt Style */

.contactOuter{
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contactInner{
    display: flex;
    height: 100%;
    width: 50%;
}

.contactLeft{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 50%;
}

.contactLeft p{
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    color: #333333;
}

.contactRight{
    display: flex;
    height: 100%;
    width: 50%;
}

.contactRight img{
    margin-top: 35px;
    width: 420px;
    height: 300px;
}

/* Produkte Style */
.topHdlPrdOuter{
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.topHdlPrd{
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    color: #333333;
    font-weight: bolder;
}

.mainImgScroll{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainImgScrollInner{
    display: flex;
    flex-direction: column;
}

.boxBreak{
    display: flex;
    flex-direction: row;
}

.prdBoxed{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prdBoxed img{
    width: 235px;
}

.prdBoxedHDL{
    margin-top: 20px;
}

.prdBoxed span{
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    color: #b47b4f;
    text-shadow: 1px 1px 1px #23272A;
    font-weight: bolder;
}

.prdTextInfo{
    display: flex;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.prdTextInfo span{
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    width: 40%;
    color: #b47b4f;
    text-shadow: 1px 1px 1px #23272A;
}

.seperator{
    margin-top: 60px;
    margin-bottom: 60px;
    width: 55%;
    border: solid 2px #b47b4f;
}

/* KontaktForm */
.kontaktForm{
    display: flex;
    flex-direction: column;
}

.kontaktForm input{
    margin-bottom: 10px;
    font-size: 22px;
    border: solid 1px #23272A;
    border-radius: 8px;
    background: none;
    color: white;
}
.kontaktForm input::placeholder{
    color: #23272A;
}

.kontaktForm textarea{
    font-size: 22px;
    margin-bottom: 12px;
}

.kontaktForm button{
    width: 200px;
    height: 45px;
    margin-bottom: 30px;
    font-size: 20px;
    cursor: pointer;
    color: #23272A;
    background-color: #b47b4f;
    border: solid 2px #23272A;
    border-radius: 8px;
    transition: 0.2s;
}

.kontaktForm button:hover{
    transition: 0.2s;
    background-color: #23272A;
    color: #b47b4f;
    border: solid 2px #b47b4f;
}