@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        :root {
            --bgcolor: #13111C;
            --pricolor: #A78BFA;
            --secondary: #7C3AED;
            --fontcolor: #E2E8F0;
            --tittlefontcolor: #94A3B8;
            --decentfontcolor: #64748B;
            --textboxbgcolor: #1F1B2E;
            --miniboxbgcolor: #2D2640;
            --miniboxiconcolor: linear-gradient(45deg, #7C3AED 0%, #A78BFA 100%);
            --miniboxhovcolor: #352F4D;
            --miniboxhovshadow: rgba(124, 58, 237, 0.25);
            --radius: 16px;
            --boxshadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #13111C url('https://www.transparenttextures.com/patterns/asfalt-light.png');
            color: var(--fontcolor);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            text-align: center;

        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./pictures/index.jpg') no-repeat center center/cover;
            position: relative;
            z-index: 10;
        }


        .service {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            background-size: cover;
        }

        .service.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-box {
            background: var(--boxcolor);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            width: 50%;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px var(--shadowcolor);
            position: relative; /* Für den Status-Indikator */
        }

        .service-box:hover {
            transform: scale(1.1); /* Vergrößertes Zoom */
            box-shadow: 0 10px 20px var(--shadowcolor);
            background-color: var(--hovercolor);
        }

        .service-box img {
            width: 80px; /* Größeres Icon */
            height: 80px; /* Größeres Icon */
            margin-bottom: 1rem;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        html {
            scroll-behavior: smooth;
        }

        /* Zusätzliche Styles für den Text */
        h2 {
            font-size: 1.5rem;
            margin: 1rem 0;
            color: var(--pricolor);
        }

        p {
            font-size: 1rem;
            color: var(--fontcolor);
        }

        .text-gradient {
            background: linear-gradient(90deg, var(--secondary, #7C3AED), var(--pricolor, #A78BFA), #89B4FA);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }