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

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.logo img {
    height: 100px;
    width: auto;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    z-index: 1;
    padding-bottom: 100px;
}

.button {
    background-color: #991B1F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    outline: none;
    opacity: 1;
    transition: transform 1s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.button:hover {
    background-color: #b22234;
}

.button.scrolled {
    transform: translate(-50%, -300%);
}

.scroll-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 35px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.scroll-indicator .material-symbols-outlined {
    font-size: 40px;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-indicator .material-symbols-outlined:last-child {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.scroll-indicator.hidden {
    opacity: 0;
}

@keyframes scrollPulse {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}

.impressum {
    background-color: #991B1F;
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.impressum .angaben {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: left;
    margin-left: 20px;
}

.impressum .angaben a {
    color: white;
    text-decoration: underline;
}

.impressum .angaben a:hover {
    color: white;
}

.footer-nav {
    margin-top: 30px;
    margin-bottom: 40px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav li {
    margin: 0 15px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ef4b5e;
}

.footer-nav a i {
    margin-right: 8px;
}

.impressum h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #991B1F;
}

.impressum section {
    margin-bottom: 30px;
}

.impressum h2 {
    color: white;
    margin-bottom: 10px;
}

.impressum h3 {
    color: #991B1F;
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.impressum .footer-nav a {
    display: inline-flex;
    align-items: center;
}

.impressum .footer-nav a i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav li {
        margin: 10px 0;
    }

    .logo img {
        height: 75px;
        width: auto;
    }

    .impressum {
        padding: 10px;
        font-size: 14px;
    }

    .button.scrolled {
        transform: translate(-50%, -500%);
    }

    .button {
        padding: 15px 30px;
        border-radius: 10px;
        font-size: 20px;
    }

    .scroll-indicator {
        transform: translate(-50%, 40px);
    }
}
