/* font-family: 'Raleway', sans-serif; */

:root {
    --black: rgb(30, 30, 30, 0.9);
    --white: rgba(255, 255, 255, 0.8);
    --orange: rgb(252, 180, 25);
    --orange-hover: rgb(230, 160, 11);
    --gray: rgb(163, 163, 163, .8);
}

#cookie-bar {
    height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}


/* ------------------------------Header------------------------------------ */

#Head {
    position: fixed;
    z-index: 10;
    width: 100%;
}

#Header-fixed {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 15px rgb(0, 0, 0, .5);
    padding-top: 15px;
    padding-bottom: 25px;
    transition: 250ms;
}

.header-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
}


/* Navigation */

#Navigation {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 1.8em;
    font-weight: 500;
    transition: .4s;
    margin-top: 10px;
}

#Navigation a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 23px;
    margin-right: 23px;
    color: black;
    text-decoration: none;
    white-space: nowrap;
    /* kein Zeilenumbruch bei Wörtern */
    transition: color 170ms ease-in-out;
}

#Navigation a:hover {
    color: var(--orange-hover);
}

#Navigation a:after {
    content: '';
    width: 0%;
    height: 3px;
    background-color: var(--orange);
    transition: width 170ms ease-in-out, color 170ms ease-in-out;
}

#Navigation a:hover::after {
    width: 100%;
}

#Logo-image {
    height: 100px;
    margin-right: 20px;
    transition: .4s;
}


/* Handy Menü */

.responsiv-menu {
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.menu-click {
    cursor: pointer;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    transition: all .3s ease-in-out;
}

.menu-btn {
    content: '';
    background: black;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    margin-top: 13px;
    margin-bottom: 13px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s ease-in-out;
}

.menu-btn::before,
.menu-btn::after {
    content: '';
    position: absolute;
    background: black;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.menu-btn::before {
    transform: translateY(-10px);
}

.menu-btn::after {
    transform: translateY(10px);
}


/*  Burger Animation */

.menu-click.open .menu-btn {
    transform: translateX(-40px);
    background: transparent;
}

.menu-click.open .menu-btn::before {
    transform: rotate(45deg) translate(30px, -30px);
}

.menu-click.open .menu-btn::after {
    transform: rotate(-45deg) translate(30px, 30px);
}

.remove {
    display: none !important;
}

@media (max-width:1200px) {
    #Header-fixed {
        height: 100px;
    }
    .header-container {
        flex-direction: column;
        position: absolute;
        top: 13px;
    }
    .logo-burger-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #Navigation {
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 170ms ease-in-out, visibility 170ms ease-in-out;
    }
    #Navigation.open-nav {
        opacity: 1;
        visibility: visible;
    }
    #Navigation a {
        margin: 10px;
        margin-right: 0;
        transition: all 170ms ease-in-out;
    }
    .responsiv-menu {
        display: flex;
        align-items: flex-end;
        height: 100px;
    }
}

@media (max-width:850px) {
    #Header-fixed {
        height: 60px;
    }
    .header-container {
        width: 92%;
    }
    #Logo-image {
        height: 60px;
    }
    .responsiv-menu {
        height: 60px;
    }
}


/* ------------------------------Section Start---------------------------------------- */


/* Hintergrundbild */

#Start {
    background-image: url("../img/meat.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
}


/* Transparente Farbe vor HG-Bild */

#Start::before {
    content: '';
    background: var(--black);
    z-index: 0;
    position: absolute;
    inset: 0;
    opacity: .3;
}


/* Überschrift */

.headline {
    color: white;
    position: absolute;
    inset: 0;
    font-size: 3rem;
    text-align: center;
}

.headline h1 {
    text-shadow: 0px 0px 10px black;
    margin: 4%;
}

@media(max-width: 650px) {
    .headline {
        font-size: 2rem;
    }
}


/* Pfeil */

.arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.arrow img {
    height: 80px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-gray {
    background-color: var(--gray);
}


/*Section 2 geändert 24.06. 11:42 Moritz*/

.gallery {
    display: flex;
}

.overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(239, 239, 239);
}

.gallery img {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
}


/* -------------------------Overall ------------------------------------*/

h2 {
    font-size: 50px;
    text-align: center;
}


/* -------------------------------Footer --------------------------------------*/

footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-container {
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.law {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-right: 30px;
}

.legal-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.legal-links a {
    font-size: 20px;
    font-weight: 200;
    color: var(--white);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.law p {
    white-space: nowrap;
    margin-bottom: 0;
}

.sm-icons {
    display: flex;
}

.sm-icons a {
    margin: 10px;
}

.sm-icons a img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 5px;
    filter: invert(.9);
    transition: background-color .3s, filter .3s;
}

.sm-icons a img:hover {
    background-color: var(--orange);
    filter: invert(0);
}

@media (max-width:1000px) {
    .footer-container {
        flex-direction: column-reverse;
        margin-top: 25px;
        margin-bottom: 35px;
    }
    .law {
        margin-right: 0;
        margin-top: 15px;
    }
}

@media (max-width:600px) {
    .sm-icons a img {
        height: 55px;
        width: 55px;
    }
}