body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.navbar nav {
    display: flex;
    gap: 15px;
}

.navbar nav a {
    color: #2c3e50;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
    align-self: center;
}
.navbar nav a.button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.navbar nav a.button:hover {
    display: inline-block;
    background-color: #e8e8e8;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.navbar nav a:hover {
    background: #2c3e50;
    color: white;
    border-radius: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: #2c3e50;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.mobile-menu a {
    color: #2c3e50;
    text-decoration: none;
}

.mobile-menu a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

/* Main Sections */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

section {
    margin: 30px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 0px;
    color: #2c3e50;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid a {
    display: block;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cta {
    text-align: center;
    background-color: #f1c40f;
    padding: 60px;
    margin: 0px ;
}

.cta h2 {
    margin-bottom: 20px;
    margin-top: 0px;
    color: #2c3e50;
}

.cta a {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta a:hover {
    background-color: #f1c40f;
    color: #2c3e50;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px 35px;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: auto;
    padding: 0px 20px;
}

.footer-container h3 {
    margin-bottom: 10px;
    color: #f1c40f;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
    }
}

h3{
    color: #2c3e50;
}
.impressum-footer{
    position: absolute;
    bottom: 0px;
}
@media (max-width:942px) {
    .impressum-footer{
        position: relative;
    }
}
#ausstattung{
    background: whitesmoke;
}