body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;            
    background-image: url("pictures/aussichtswarte.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6f6f6f;
    padding: 10px 20px;
    color: white;
    position: relative;
    z-index: 100;
    border-radius: 5px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-infos a {
    color: #999;
}

.footer-infos a:hover {
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px;
    width: auto;
    transition: 0.3s ease;
    border-radius: 10px;
}

.logo img:hover {
    transform: scale(1.1);
}

.logo h1 {
    color: #111;
    font-size: 30px;
    margin-left: 15px;
}

.reservation {
    width: 120px;
    height: auto;
    margin-left: auto;
    justify-content: center;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.reservation:hover {
    background-color: #444;
}


.start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 30px 40px;
    max-width: 1200px;
    margin-top: 40px;
}

.start-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.start figure {
    flex: 1;
    text-align: center;
    padding-right: 40px;
    margin-left: 10px;
}

figcaption {
    margin-top: 8px;
    font-size: 14px;
    font-style: italic;
    color: #555;
}

.start .text {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    flex: 1;
    text-align: center;
    max-width: 500px;
    margin-bottom: 50px;
}

.start .text:hover {
    cursor: default;
}

.start h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.start p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.start img {
    height: 700px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.news {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 50px auto;
}

.news:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.news p {
    font-size: 15px;
    line-height: 1.5;
}

.turm-bild:hover img {
    transform: scale(1.5);
}

.turm-bild {
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.turm-bild, .text {
    flex: 1;
}

.turm-bild img {
    object-fit: cover;
    transition: transform 0.5s;
    height: 100%;
}

nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    background-color: #6f6f6f;
    padding: 10px 100px;
    width: 100%;
    position: relative;
    border-radius: 10px;
}

nav .links {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav .links li {
    display: inline;
}

nav .links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

nav .links a:hover {
    background-color: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
}

nav .links li:not(:last-child)::after {
    content: "\00a0\00a0|";
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

nav .links a.active {
    background-color: white;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #222;
    border-radius: 5px;
}

footer p {
    color: #999;
}

footer p:hover {
    cursor: default;
}

footer svg:hover {
    transform: scale(1.2);
}

footer img {
    border-radius: 10px;
}

footer img:hover {
    transform: scale(1.2);
}

.socials {
    display: flex;
    gap: 10px;
}

.logo-text {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    padding: 20px 0;
    position: relative;
}

.logo-text:hover {
    cursor: default;
}

.logo-text span {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #222;
    text-transform: none;
    letter-spacing: 1px;
}

.laws a {
    color: #999;
}

.laws a:hover {
    color: white;
}

@media (max-width: 992px) {

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #666;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav .links {
        flex-direction: column;
        padding: 0;
    }

    .mobile-nav .links li {
        display: block;
        margin: 10px 0;
    }

    .start-top {
        flex-direction: column;
        text-align: center;
    }

    .reservation {
        font-size: 18px;
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: 0.3s ease;
        background-color: #666;
    }

    .reservation:hover {
        background-color: white;
        color: #333;
        padding: 5px 10px;
        border-radius: 5px;
        width: 100%;
    }

    nav .links li::after {
        content: unset;
        display: none;
    }

    .mobile-nav .links a {
        display: block;
        padding: 10px;
    }

    .mobile-nav.active {
        opacity: 1;
        display: block;
    }
}