* {
    box-sizing: border-box;
}
body {
    width: 100%;
    min-height: 100vh;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-family: Sans-serif;
    background: #e9e0c8;
}
hr {
    width: 95%;
}


.nav {
    height: 70px;
    width: 100%;
    background: #e9e0c8;
    position: relative;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 0px 10px 10px #c6beaa;
}
.nav .nav-header {
    display: inline;
}
.nav .nav-header .nav-title {
    display: inline-block;
    padding: 1px 50px;
}
.nav .nav-header .nav-title img {
    height: 65px;
    width: auto;
}
.nav .nav-btn {
    display: none;
}
.nav .nav-links {
    display: inline;
    float: right;
    font-size: 17px;
    padding: 7.5px 50px;
}
.nav .nav-links a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 1rem;
}
.nav .nav-links a:hover {
    background-color: #e9e0c8;
    border-radius: 15px;
    box-shadow: inset 5px 5px 8px #c6beaa,
                inset -5px -5px 8px #ffffe6;
}
.nav #nav-check {
    display: none;
}
@media (max-width: 964px) {
    .nav .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }
    .nav .nav-btn label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 27.5px 50px;
    }
    .nav .nav-btn label:hover, .nav #nav-check:checked ~ .nav-btn label {
        background-color: #e9e0c8;
    }
    .nav .nav-btn label span {
        display: block;
        width: 30px;
        height: 10px;
        border-top: 3px solid #000; 
        margin: -2px;
    }
    .nav .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #e9e0c8;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 56px;
        border-radius: 0px 0px 15px 15px;
        left: 0px; 
    }
    .nav .nav-links a {
        display: block;
        width: 100%; 
    }
    .nav #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
    }
    .nav #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto; 
    }
    .nav .nav-header .nav-title {
        padding: 1px 20px;
    }
}


.header {
    margin-top: 50px;
    place-items: center;
    display: grid;
}
.header .header-row {
    width: 90%;
    max-width: 1235px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 30px;
}
.header .header-row .header-left {
    overflow: hidden;
}
.header .header-row .header-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.header .header-row .header-right {
    display: flex;
    align-items: center;
}
.header .header-row .header-right .header-content {
    margin-top: -35px;
    padding-left: 20px;
}
.header .header-row .header-right .header-content .title {
    font-size: 50px;
    line-height: 40px;
    font-weight: bold;
    font-family: 'Tangerine', serif;
}
.header .header-row .header-right .header-content .text {
    margin-top: -30px;
    font-size: 16px;  
    line-height: 26px;
    padding-bottom: 15px;
}
@media (max-width: 991px) {
    .header {
        margin-top: 20px;
    }
    .header .header-row .header-right .header-content {
        margin-top: -70px;
        padding-left: 0;
     }
     .header .header-row {
        width: 90%;
        grid-template-columns: 1fr;
    }
    .header .header-row .header-right .header-content .title {
        font-size: 40px;
    }
}

.card-view {
    margin-top: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 20px;
}
.header-cards .card {
    float: left;    
    width: 212px;
}
.header-cards .card .circle {
    height: 50px;
    width: 50px;
    background: #e9e0c8;
    border-radius: 100%;
    box-shadow: 0px 10px 10px #c6beaa;
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;

}
.header-cards .card p {
    font-size: 17px;
    font-weight: bold;
    color: #000;
    float: left;
    margin-left: 10px;
}
.header-cards .card .fa-solid.fa-wheelchair-move {
    font-size: 20px;
}
@media (max-width: 700px) {
    .header-cards {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 450px) {
    .header-cards {
        grid-template-columns: 1fr; 
    }
}


.gastgeberin-image {
    margin-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -190px;
}
.gastgeberin-image img {
    width: 225px;
    height: 225px;
    border-radius: 100%;
    object-fit: cover;
}

.gastgeberin {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    margin-bottom: 10px;  
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;  
}
.gastgeberin .gastgeberin-container {
    margin-top: 65px;
    width: 90%;
    max-width: 1235px; 
    padding: 20px 50px 20px 50px;
    border-radius: 15px;
    box-shadow: 0px 10px 10px #c6beaa;
    text-align: center;
}
.gastgeberin .gastgeberin-container h2 {
    padding-top: 85px;
    font-size: 50px;
    line-height: 40px;
    font-weight: bold;
    font-family: 'Tangerine', serif;
}
.gastgeberin .gastgeberin-container p {
    margin-top: -22.5px;
    font-size: 16px;  
    line-height: 26px;
    padding-bottom: 15px;
}
.gastgeberin .gastgeberin-container #check {
    display: none;
}
.gastgeberin .gastgeberin-container .content {
    display: none;
}
.gastgeberin .gastgeberin-container label {
    display: inline-block;
}
.gastgeberin .gastgeberin-container label:hover {
    text-decoration: underline;
    cursor: pointer;
}
.gastgeberin .gastgeberin-container #check:checked ~ .content {
    display: block;
}
.gastgeberin .gastgeberin-container #check:checked ~ label {
    visibility: hidden;
}
.gastgeberin .gastgeberin-container #check:checked ~ label:after {
    content: 'Weniger anzeigen';
    display: block;
    visibility: visible;
}


footer {
    border-radius: 15px 15px 0px 0px;
    background-color: #121315;
    width: 100%;
    padding: 7.5px 50px;
    margin-top: auto;
}
footer .footer-copyright {
    float: left;
}
footer .footer-copyright p {
    font-size: 15px;
    color: #757575;
}
footer .footer-copyright a {
    color: #757575;
    text-decoration: none;
}
footer .footer-copyright a:hover {
    text-decoration: underline;
}
footer .footer-legal {
    margin-top: 15px;
    float: right;
}
footer .footer-legal a {
    padding: 0px 5px;
    font-size: 15px;
    color: #757575;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 545px) {
    footer .footer-copyright {
        float: none;
        display: flex;
        text-align: center;
        justify-content: center;
    }
    footer .footer-legal {
        margin-top: -7.5px;
        margin-bottom: 7.5px;
        float: none;
        display: flex;
        text-align: center;
        justify-content: center;
    }
}