        /* Grundlegende Styles */
        body {
            margin: 0;
            font-family: 'Roboto', Arial, Helvetica, sans-serif;
            line-height: 1.5;
            color: #ffffff;
            background-color: #000000;
        }

        /* Schriftschnitte */
        
       /* 🔹 Textauswahl – Standard */
        ::selection {
            background-color: #333333; /* Hintergrundfarbe der Markierung */
            color: #ffffff;            /* Textfarbe */
        }

        /* 🔹 Firefox */
        ::-moz-selection {
            background-color: #333333;
            color: #ffffff;
        }

        /* Video */
        .video-wrapper {
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            background: #000;
        }
        .video-wrapper video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            pointer-events: none;
        }

        /* 📱 Smartphone-Optimierung */
            @media (max-width: 768px) {
            .video-wrapper {
                width: 100vw;
                max-width: none;
                margin: 0;
            }

            .video-wrapper video {
                width: 100vw;
                height: 100vh;          /* fast Vollbild */
                object-fit: cover;     /* füllt den Bildschirm */
            }
        }


        /* Content Section */
        .content-section {
            /*padding-top: 2rem;
            padding-bottom: 2rem;*/
            padding-left: 30%;
            padding-right: 30%;
            text-align: center;

            /* Fade-In Animation */
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
            animation-delay: 0.3s;
        }

        /* Fade-In Keyframes */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Anpassungen für Content Section */
        @media (max-width: 1024px) {
            .content-section {
                padding-left: 15%;
                padding-right: 15%;
            }
        }
        @media (max-width: 600px) {
            .content-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        .content-section h1 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            line-height: 1.0em;
            margin-bottom: 30px;        /* Abstand zur Linie */
            text-align: center;
            position: relative;
            text-transform: uppercase;
        }

        .content-section h1::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -15px;              /* Linie unter dem Text */
            width: 120px;
            height: 1px;                /* sehr dünn */
            background-color: #a23532;
            opacity: 0.6;
            transform: translateX(-50%);
        }


        

        .content-section h2 {
            font-size: clamp(1.2rem, 4vw, 1.4rem);
            margin-top: 3rem;
            margin-bottom: 2rem;
            line-height: 1.0em;
            font-weight: 200;
        }

        .content-section p {
            max-width: 720px;
            margin: 0 auto 2rem;
            color: #fff;
            font-size: clamp(1.0rem, 4vw, 1.0rem);
            margin-bottom: 3rem;
            line-height: 1.0em;
            font-weight: 100;
        }

        /* Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 2.2rem;
            font-size: 0.9rem;
            font-weight: 100;

            color: currentColor;             /* gleiche Farbe wie Text / Linie */
            background-color: transparent;   /* Outline statt Fill */
            border: 0.1em solid #a23532;  /* Outline in gleicher Farbe */

            text-decoration: none;
            transition: 
                transform 0.2s ease, 
                box-shadow 0.2s ease, 
                color 0.2s ease, 
                background-color 0.2s ease;
            cursor: pointer;
        }

        .cta-button svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .social-icons {
            /*padding-top: 2rem;
            padding-bottom: 2rem;*/
            margin-top: 3rem;
            padding-left: 30%;
            padding-right: 30%;
            text-align: center;
        }

        .social-icons a {
            color: #ffffff;
        }

        .social-icons:hover,
        .social-icons:focus {
            color: #ffffff;
            transform: translateY(-2px);
        }



        .cta-button:hover,
        .cta-button:focus {
            
            transform: translateY(-2px);
        }
        .cta-button:hover svg {
            transform: translateX(4px);
        }
        .cta-button:active {
            transform: translateY(0);
        }

        /* Mobile Button */
        @media (max-width: 480px) {
            .cta-button {
                width: 60%;
                max-width: 320px;
                justify-content: center;
            }
        }

        @media (min-width: 1024px) {
            .video-wrapper video {
                max-height: 80vh;
            }
        }

        /* Footer */
        .site-footer {
            background-color: #000; /* dunkler Hintergrund */
            color: #fff; /* Textfarbe */
            font-size: 0.8rem;
            font-weight: 200;
            text-align: center;
            padding: 1.5rem 1rem;
            flex-shrink: 0; /* verhindert, dass Footer schrumpft */
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-nav {
            margin-top: 0.5rem;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 0.8rem;
            transition: color 0.2s ease;
        }

        .footer-nav a:hover {
            color: #a23532; /* Beispiel Hover-Farbe */
        }