* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    --max-width: 1000px;
    --padding-left-right: 75px;
}

body {
    font-family: 'Poppins', 'sans-serif';
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #9f7f47;
    background-color: #ffffff;
    overflow-x: hidden;
    background-image: url(img/Bild-Laden.jpg);
    background-size: cover;
    background-position-y: -200px;
    background-position-x: center;
}

.container{
    width:100%;
    height: 100vh;
    z-index: 1;
}

.top-bar-container {
    background-color: #f7ac2b;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 10;
}

.top-bar {
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-bar .logo {
    margin-left: 20px;
}

.top-bar .logo .logo-text{
    color: white;
    font-size: 28px;
    font-weight: 200;
    text-decoration: none;
}

.top-bar .menu i{
    display: none;
}

.top-bar .menu {
    position: absolute;
}

.nav-links {
    z-index: 5;
}

.nav-links i {
    display: none;
}

.nav-links ul div {
    display: inline-block;
    list-style: none;
    position: relative;
    margin: 15px;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
}

.nav-links ul li::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 0%;
    background: white;
    transition: width 250ms ease-in-out;
}

.nav-links ul li:hover::after{
    width:100%;
}

.content .hero{
    margin-top: -170px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero .store-contact {
    margin: 20px;
    padding: 20px;
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: #00000060;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    text-align: center;
}

.store-contact h2 {
    margin: 30px 0 10px;
    font-size: 25px;
    font-weight: 200;
}

.store-contact h3 {
    margin: 30px 0 10px;
    font-size: 30px;
    font-weight: 500;
}

.store-content{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.store-content .contact p a {
    color: white;
}

.hero .adress,.hero .contact {
    width: 50%;
    font-size: 20px;
    font-weight: 500;
    margin: 30px;
    padding: 20px;
    border-radius: 10px;
}

.content {
    padding-bottom: 100px;
    width: 100%;
    margin-top: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: relative;
    z-index: -10;
}

.content .neuigkeiten-container {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.content .neuigkeiten {
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: rgba(128, 128, 128, 0);
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .neuigkeiten .h2 {
    margin: 30px;
}

.content .neuigkeiten .text {
    text-align: center;
    font-size: 22px;
    margin: 0px;
    padding: 0px;
}

.content .neuigkeiten .team {
    text-align: center;
    font-size: 22px;
    padding: 30px;
}

.content .oeffnungszeiten-container {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.content .oeffnungszeiten {
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: rgba(128, 128, 128, 0);
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oeffnungszeiten .h2,.oeffnungszeiten h3{
    margin: 30px;
}

.oeffnungszeiten h2, .oeffnungszeiten h3{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.oeffnungszeiten div {
    display: flex;
    width: 100%;
}

.oeffnungszeiten div h2 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 500;
}

.oeffnungszeiten div p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.oeffnungszeiten div .mo-fr, .mi, .sa {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 10px;
}

.footer{
    margin-top: -35px;
    width: 100%;
    background-color: #9f7f47;
    border-radius: 20px 20px 0 0;
}

.footer .top-section {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .menu-links {
    display: flex;
}

.footer .logo {
    margin: 50px;
    margin-top: 27px;
    margin-bottom: 20px;
}

.footer .logo .logo-text {
    cursor: pointer;
    font-size: 35px;
    font-weight: 100;
    text-decoration: none;

}

.footer .menu-links ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .menu-links ul div{
    margin:3px 50px 3px;
    list-style: none;
    position: relative;
}

.footer .menu-links ul li a{
    color: white;
    text-decoration: none;
}

.menu-links ul div li::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 0%;
    background: white;
    transition: width 250ms ease-in-out;
}

.menu-links ul div li:hover::after{
    width:100%;
}

.footer .bottom-section {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .bottom-section h3 {
    margin:20px 10px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 100;
}

.contacts {
    display: flex;
}

.contacts .adress, .contacts .contact {
    padding: 30px;
    font-size: 15px;
}

/*--------about--------*/

.ueber-title {
    margin: 30px;
    padding: 30px;
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: #00000060;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    text-align: center;
}

.ueber-title h3 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 100;
}

.ueber-title h2 {
    margin: 10px 0 30px;
    font-size: 25px;
    font-weight: 100;
}

.text {
    margin:20px 0 0;
    padding:20px 5px 0;
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
}

.text p {
    font-size: 20px;
    font-weight: 100;
    text-align: center;
}

.text .text-footer p {
    font-size: 25px;
    font-weight: 100;
    text-align: center;
}

/*-------Datenschutz---------*/

.datenschutz-title {
    margin: 30px;
    padding: 30px;
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: #00000060;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    text-align: center;
}

.datenschutz-title h3 {
    margin: 30px 0 10px;
    font-size: 25px;
    font-weight: 100;
}

.datenschutz-title h2 {
    margin: 10px 0 10px;
    font-size: 22px;
    font-weight: 100;
}

.datenschutz-title h4, .datenschutz-title h4 a {
    margin: 10px 0 30px;
    font-size: 20px;
    font-weight: 100;
    color: white;
} 

.text h5{
    font-size: 25px;
    font-weight: 200;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.text a {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 200;
}

/*----------Impressum------------*/

.impressum-title {
    margin: 30px;
    padding: 30px;
    width: calc(100% - var(--padding-left-right));
    max-width: var(--max-width);
    background-color: #00000060;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    text-align: center;
}

.impressum-title h3 {
    margin: 30px 0 10px;
    font-size: 25px;
    font-weight: 100;
}

.impressum-title h2 {
    margin: 10px 0 10px;
    font-size: 22px;
    font-weight: 100;
}

.impressum-title h4, .impressum-title h4 a {
    margin: 10px 0 30px;
    font-size: 20px;
    font-weight: 100;
    color: white;
} 

/*---------Galerie---------*/

.images {
    margin-top: 30px;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    grid-template-areas:
    "eins zwei"
    "drei vier"
    "fuenf sechs"
    "sieben acht";
}

.img1 {
    grid-area: eins;
    position: relative;
}

.img2 {
    grid-area: zwei;
    position: relative;
}

.img3 {
    grid-area: drei;
    position: relative;
}

.img4 {
    grid-area: vier;
    position: relative;
}

.img5 {
    grid-area: fuenf;
    position: relative;
}

.img6 {
    grid-area: sechs;
    position: relative;
}

.img7 {
    grid-area: sieben;
    position: relative;
}

.img8 {
    grid-area: acht;
    position: relative;
}

.images img {
    width: 100%;
    transition: all 250ms ease-in-out;
}

.images .img-text {
    position: absolute;
    bottom: -100%;
    transform: translateY(0);
    z-index: 0;
    color: white;
    transition: transform 250ms ease-in-out;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 50px;
}

.images .img-container {
    overflow: hidden;
    height: calc(100% - 12px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.images .img-container:hover img{
    transform: scale(1.05);
}

.images .img-container:hover .img-text{
    transform: translateY(-100%);
}












































@media(max-width: 1155px) {

    .body {
        background-position-y: -150px;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-links ul li{
        font-size: 25px;
        font-weight: 100;
        text-align: center;
    }

    .nav-links {
        transition: right 500ms ease-in-out;
        position: absolute;
        background:#f7ac2b;
        height: 100vh;
        width: calc(50% + calc(var(--padding-left-right) / 2));
        top: 0;
        right: calc(-50% - 400px);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .nav-links .fa-solid {
        cursor: pointer;
        display: block;
        position: absolute;
        margin: 40px;
        top: 0;
        left: 0;
        color: white;
    }

    .top-bar .menu{
        position: relative;
        padding: 20px;
    }

    .top-bar .menu i {
        padding: 20px;
        cursor: pointer;
        display: block;
        color: white;
    }

    .text p {
        font-size: 18px;
    }

    .text h5 {
        font-size: 23px;
    }

    .text .text-footer p {
        font-size: 22px;
    }

}

@media (max-width: 750px) {
    .footer .top-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .menu-links ul{
        align-items: center;
    }

    .footer .menu-links ul li a {
        font-size: 18px;
    }

    .footer .top-section .logo {
        margin: 15px;
    }

    .footer .bottom-section {
        flex-direction: column;
    }

    .footer .bottom-section h3 {
        margin:20px 30px 10px;
    }

    .footer .adress, .footer .contact {
        padding-top: 10px;
        text-align: center;
    }
    .images {
        margin-top: 0;
        gap: 30px;
        grid-template-columns: 1fr;
        grid-template-areas:
    "eins"
    "zwei"
    "drei"
    "vier"
    "fuenf"
    "sechs";
    }
}

@media (max-width: 550px) {

    .oeffnungszeiten div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero .adress,.hero .contact {
        width: 90%;
        font-size: 20px;
        margin: 0;
    }

    .hero .adress {
        margin-top: 15px;
    }

    .hero .contact {
        margin-bottom: 30px;
    }

    .store-contact h2 {
        font-size: 20px;
    }

    .store-contact h3 {
        font-size: 22px;
    }

    .oeffnungszeiten h2, .oeffnungszeiten h3{
        font-size: 22px;
    }

    .oeffnungszeiten div p {
        font-size: 16px;
    }

    .top-bar .logo .logo-text {
        font-size: 22px;
    }

    .nav-links ul li{
        font-size: 20px;
        font-weight: 100;
        text-align: center;
    }

    .store-content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text p {
        font-size: 16px;
    }

    .text h5 {
        font-size: 21px;
    }

    .text .text-footer p {
        font-size: 20px;
    }

    .ueber-title h3 {
        margin: 30px 0 10px;
        font-size: 18px;
    }
    
    .ueber-title h2 {
        margin: 10px 0 30px;
        font-size: 22px;
        font-weight: 100;
    }

    .datenschutz-title h3 {
        margin: 30px 0 10px;
        font-size: 22px;
    }
    
    .datenschutz-title h2 {
        margin: 10px 0 30px;
        font-size: 20px;
    }

    .datenschutz-title h4, .datenschutz-title h4 a {
        font-size: 18px;
    }

    .images {
        margin-top: -20px;
        gap: 20px;
    }

    .footer{
        margin-top: -60px;
    }

}

@media (max-width: 450px) {
    .footer .top-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .top-section .logo {
        margin-top: 35px;
    }

    .footer .menu-links {
        flex-direction: column;
    }

    .footer .menu-links ul{
        align-items: center;
    }

    .footer .menu-links ul li a {
        font-size: 18px;
    }

    .footer .contacts {
        flex-direction: column;
    }

    .footer .adress {
        padding-bottom: 0px;
    }

    .ueber-title h3 {
        margin: 30px 0 10px;
        font-size: 16px;
    }
    
    .ueber-title h2 {
        margin: 10px 0 30px;
        font-size: 18px;
        font-weight: 100;
    }

    .datenschutz-title h3 {
        margin: 30px 0 10px;
        font-size: 20px;
    }
    
    .datenschutz-title h2 {
        margin: 10px 0 30px;
        font-size: 18px;
    }

    .datenschutz-title h4, .datenschutz-title h4 a {
        font-size: 16px;
    }
}

@media (max-width: 420px) {

    .store-contact h2 {
        font-size: 18px;
    }

    .store-contact h3 {
        font-size: 20px;
    }

    .oeffnungszeiten div p {
        font-size: 19px;
    }
}

@media (max-width: 380px) {
    .nav-links ul li{
        font-size: 17px;
        font-weight: 100;
        text-align: center;
    }

    .adress, .contact {
        font-size: 17px;
    }
}