html, body {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

* {
    border: 0;
    box-sizing: border-box;
}

*, *:hover, *:focus {
    outline: none;
}

body {
    background: #edc5be;
    overflow-x: hidden;
    font: 400 14px/24px 'Open Sans', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.smoothscroll {
    scroll-behavior: smooth;
}

.text-brand {
    color: #b00c28;
}

.bg-white {
    background-color: white;
}

.bg-soft-colored {
    background-color: rgba(237, 197, 190, 0.6);
}

.bg-cover {
    background-size: cover;
}

.o-hidden {
    overflow: hidden;
}

.t-center {
    text-align: center;
}

@media (max-width: 768px) {
    .t-center-xs {
        text-align: center;
    }
}

.inline-block {
    display: inline-block;
}

section {
align-items: center;
}

#content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2%;
    padding-bottom: 2%;
    color: #b00c28;
}

#head {
    width: 200%;
    background-color: #ffffff;
    border-bottom-left-radius: 50% 80%;
    border-bottom-right-radius: 50% 80%;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 2vw;
}

@media (min-width: 1920px) {
    .container {
        width: 70%;
        padding: 0 3vw;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
}

.bodywidth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content {
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

@media (max-height: 890px) {
    .content {
        padding: 25px 0;
    }
}

@media (max-height: 700px) {
    .content {
        padding: 50px 0;
    }
}

.lifestyle-home-inner {
    padding: 80px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .lifestyle-home-inner {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .lifestyle-home-inner {
        padding: 40px 15px;
    }
}


/* Footer Layout mit Flexbox - Legacy Support */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

/* Horizont-Effekt mit Transform */
.horizont {
    width: 100%;
    padding: 5vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 50px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-default {
    background-color: #fff;
    border-color: #ddd;
    color: #333;
}

.btn-default:hover {
    background-color: #f5f5f5;
}

.bg-colored-pm {
    background-color: #b00c28;
    color: white;
    border-color: #b00c28;
}

.bg-colored-pm:hover {
    background-color: #970a23;
}

.radius-lg {
    border-radius: 40px;
}

.xxs-mt {
    margin-top: 15px;
}

.xs-pl {
    padding-left: 30px;
}

.xs-pr {
    padding-right: 30px;
}

.sm-py {
    padding: 0 0 10px;
}

@media (max-width: 480px) {
    .btn {
        padding: 9px 35px;
        font-size: 12px;
    }
}

/* Modal System */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.fade.show {
    opacity: 1;
}

.modal-dialog {
    width: 90%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .modal-dialog {
        width: 80%;
    }
}

@media (min-width: 1920px) {
    .modal-dialog {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .modal-dialog {
        width: 95%;
    }
}

.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 5px;
}

.radius {
    border-radius: 5px;
}


/* Footer Styles */
#footer {
    width: 200%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
    background-color: #ffffff;
    border-top-left-radius: 50% 80%;
    border-top-right-radius: 50% 80%;
}

.footer-container {
    width: 33%;
    display: flex;
    justify-content: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.footer-item {
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 1920px) {
    .footer-container {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        width: 95%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .lifestyle-home-inner {
        padding: 40px 15px;
    }
}
