* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', sans-serif;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    color: #4B0B07;
    width: 30px;
    border-width: 3px;
}

ul {
    padding-left: 0 !important;
}

header {
    background-color: #E1C3A1;
    max-height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .row {
    display: flex;
    align-items: center;
}

/* navigation */

.main__menu-navbars ul {
    display: flex;
    justify-content: flex-end;
}

.main__menu-navbars ul li {
    list-style-type: none;
}

.main__menu-navbars ul li a {
    text-decoration: none;
    color: #440706;
    font-size: 17px;
    font-weight: 500;
}

.main__menu-navbars ul li + li {
    margin-left: 20px;
}

.main__menu-burger {
    position: relative;
    display: none;
}

.main__menu-burger i {
    position: absolute;
    right: 15px;
    font-size: 18px;
    top: -13px;
    cursor: pointer;
}

/* ueber uns */

.ueberuns {
    padding-top: 80px;
}

.ueberuns__description p {
    margin-top: 20px;
    max-width: 650px;
}

.ueberuns__description h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f1f3a;
}

.ueberuns__description h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #440706;
}

.ueberuns__socialMedia {
    margin-top: 60px;
}

.ueberuns__socialMedia i {
    font-size: 32px;
    color: #440706;
    background-color: #E1C3A1;
    padding: 5px;
    border-radius: 20%;
}

.ueberuns__socialMedia ul {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.ueberuns__socialMedia ul li {
    list-style-type: none;
}

.ueberuns__socialMedia ul li + li {
    margin-left: 10px;
}

.ueberuns__socialMedia ul li img {
    width: 30px;
    height: 30px;
    color: #0f1f3a;
}

.foto__decor {
    position: relative;
    display: inline-block;
}

.foto__decor img {
    display: block;
    max-width: 100%;
    height: auto;
}

.foto__decor::before,
.foto__decor::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    pointer-events: none;
}

.foto__decor::before {
    top: -20px;
    right: -20px;
    border-top: 5px solid #440706;
    border-right: 5px solid #440706;
}

.foto__decor::after {
    bottom: -20px;
    left: -20px;
    border-bottom: 5px solid #440706;
    border-left: 5px solid #440706;
}

/* produkte */

.unsereprodukte {
    padding-top: 70px;
}

.unsereprodukte__item {
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.unsereprodukte__item img {
    border-radius: 47px 0 47px 0;
}

.unsereprodukte__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(68, 7, 6, 0.18);
}

.unsereprodukte__head {
    margin-top: 15px;
    color: #440706;
}

.unsereprodukte__description {
    flex-grow: 1;
}

.unsereprodukte__description p {
    line-height: 1.6;
}

.unsereprodukte__preise {
    margin-top: auto;
}

.unsereprodukte__preise span {
    color: #4B0B07;
    font-size: 18px;
    font-weight: 500;
}

/* swiper */

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 70px;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* blog */

#blog {
    margin-top: 70px;
}

.blog__background {
    position: relative;
    height: 50vh;
    min-height: 280px;
    overflow: hidden;
    padding: 0;
}

.blog__background-layer {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: calc(100% + 160px);
    background-image: url("../img/back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(0);
}

.blog__main {
    margin-top: 70px;
}

.blog__main .row {
    display: flex;
    justify-content: space-between;
}

.blog__img img {
    width: 300px;
    border-radius: 50%;
}

.blog__box {
    text-align: center;
    width: 400px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 10px;
}

.blog__head h4 {
    color: #440706;
    font-weight: 500;
}

.blog__link {
    margin-bottom: 10px;
}

.blog__link a {
    color: #440706;
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid #440706;
    transition: .3s ease-in-out;
}

.blog__link a:hover {
    background-color: #440706;
    color: #fff;
    border-radius: 8px;
}

.blog__description p {
    line-height: 1.6;
    font-size: 18px;
}

.product__blogDetail h2 {
    text-align: center;
    color: #440706;
}

.product__blogDetail-info {
    box-shadow: 3px 4px 13px 0px #440706;
    padding: 10px;
    height: 100%;
    border-radius: 8px;
    text-align: center;
}

.product__blogDetail-info h4 {
    color: #440706;
}

/* kontakt */

.kontakt__main {
    margin-top: 70px;
}

.kontakt__main .row {
    align-items: center;
}

.kontakt__form .mb-3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.kontakt__form label {
    margin-bottom: 8px;
    font-size: 18px;
    color: #440706;
    font-weight: 500;
}

.kontakt__form input,
.kontakt__form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c9b3a3;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.kontakt__form button {
    padding: 12px 24px;
    border: 1px solid #440706;
    border-radius: 8px;
    background: #6b1f1f;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.kontakt__form button:hover {
    background-color: #fff;
    color: #440706;
}

.kontakt__info {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt__info ul {
    margin: 0;
    padding: 0;
}

.kontakt__info ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    font-size: 18px;
    color: #1f2d4a;
}

.kontakt__info ul li i {
    width: 22px;
    text-align: center;
    color: #440706;
    font-size: 20px;
    flex-shrink: 0;
}

.kontakt__info ul li span {
    line-height: 1.5;
}

.kontakt__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 25px;
    max-width: 520px;
}

.kontakt__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 4px 0 0 0;
    flex: 0 0 18px;
}

.kontakt__checkbox label {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #440706;
    display: block;
}

.kontakt__checkbox a {
    color: #440706;
    font-weight: 600;
    text-decoration: underline;
}

/* success message */

.success-message {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: #440706;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
    z-index: 2000;
    max-width: 320px;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.success-message.error {
    background-color: #a32121;
}

/* footer */

footer {
    background-color: #E1C3A1;
    margin-top: 70px;
}

.footer__main-inner .row {
    align-items: center;
}

.footer__main-img img {
    max-width: 80px;
}

.footer__main-description {
    text-align: center;
}

.footer__main-description p {
    font-weight: 500;
    color: #440706;
}

.footer__main-description p a {
    color: #440706;
    font-weight: 600;
    text-decoration: none;
}

.footer__main-links ul {
    display: flex;
    justify-content: end;
}

.footer__main-links ul li {
    list-style-type: none;
}

.footer__main-links ul li + li {
    margin-left: 15px;
}

.footer__main-links ul a {
    color: #440706;
    text-decoration: none;
    font-weight: 500;
}

.unsereprodukte__img img,
.blog__img img,
.foto__decor img,
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* mobile */

@media screen and (max-width: 500px) {
    .ueberuns__description h1 {
        font-size: 30px;
    }

    .ueberuns__description h2 {
        font-size: 22px;
    }

    .ueberuns__socialMedia i {
        font-size: 25px;
    }

    .blog__background {
        background-position: 35% 50%;
    }

    .footer__main-description {
        text-align: start;
    }

    .kontakt__info {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .footer__main-links ul {
        justify-content: start;
    }

   
}

@media screen and (max-width: 768px) {
    .main__menu-navbars {
        display: none;
    }

    .main__menu-burger {
        display: block;
    }

   

    .blog__box {
        width: 100%;
    }

    .ueberuns {
        padding-top: 0;
    }

    .blog__background {
        height: 320px;
        min-height: 320px;
    }

    .blog__background-layer {
        top: -60px;
        height: calc(100% + 120px);
    }
}

@media screen and (max-width: 991px) {
    .kontakt__info {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1025px) {
    .blog__box {
        width: 100%;
    }
}

/* mobile menu */

.mobile__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #E1C3A1;
    z-index: 9999;
    transition: .4s ease-in-out;
    transform: translateX(100%);
}

.mobile__hidden {
    display: none;
}

.mobile__menu.mobile__visible {
    transform: translateX(0);
}

.mobile__sub {
    text-align: center;
    margin-top: 100px;
}

.mobile__close {
    position: absolute;
    top: 27px;
    right: 30px;
}

.mobile__sub li {
    list-style-type: none;
    padding-top: 25px;
}

.mobile__sub li a {
    text-decoration: none;
    font-size: 32px;
    color: #151515;
}