
    :root {
        --primary-color: #1F2228;
        /* Sehr dunkles Blau/Grau */
        --secondary-color: #ffffff;
        /* Weißer Text */
        --tertiary-color: #A0AEC0;
        /* Hellgrau für Absätze/inaktiv */
        --accent-color: #FFC000;
        /* Satteres Gelb/Gold */
        --card-bg-color: #2D3039;
        /* Etwas hellerer dunkler Farbton für Karten/Balken */
        --dark-bg-color: #1A1A23;
        /* Sehr dunkel für Footer */
        --hiro-image-back-color: #6c758d;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        padding: 0;
        background-color: var(--primary-color);
        font-family: 'Inter', sans-serif;
        color: var(--secondary-color);
        box-sizing: border-box;
        overflow-x: hidden;
    }

    *,
    *:before,
    *:after {
        box-sizing: inherit;
    }

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* --- Navbar --- */
    .navbar {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        background-color: var(--primary-color);
        position: sticky;
        top: 0;
        z-index: 100;
        min-height: 70px;
    }

    #adam {
        font-size: 28px;
        color: var(--secondary-color);
        font-weight: 800;
        display: flex;
        align-items: center;
        /* gap: 8px; -- Entfernt, um margin zu verwenden */
    }

    #adam::before {
      
        content: '😎';
        color: var(--accent-color);
        font-size: 18px; 
        margin-right: 10px;
        vertical-align: middle;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav {
        color: var(--tertiary-color);
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .nav:hover,
    .nav.active {
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .nav-icons-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-icon {
        color: var(--tertiary-color);
        font-size: 18px;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .nav-icon:hover {
        color: var(--accent-color);
        transform: scale(1.1);
    }
    
    /* CSS-ONLY MENU HACK COMPONENTS */
    /* Verstecke das Kontrollkästchen immer */
    #menu-toggle {
        display: none;
    }
    
    /* Hamburger-Icon-Label */
    .menu-icon-label {
        /* display: none; -- Geändert, um auf dem Desktop sichtbar zu sein */
        display: block; /* Sicherstellen, dass es sichtbar ist */
        cursor: pointer;
        padding: 5px 10px;
        font-size: 20px;
        z-index: 101;
    }
    /* END CSS-ONLY MENU HACK COMPONENTS */


    /* --- Hero-Bereich --- */
    .hero-section {
        width: 100%;
        padding: 50px 5%;
        display: grid;
        grid-template-columns: 1.2fr 1.5fr 1fr;
        align-items: center;
        gap: 20px;
        min-height: 80vh;
        overflow: hidden;
    }

    .hero-left {
        animation: fadeInSlideRight 1s ease-out;
    }

    .hero-left .subtitle {
        font-size: 2.5rem;
        font-weight: 500;
        color: var(--secondary-color);
        margin: 0;
        opacity: 0.7;
    }

    .hero-left .title {
        font-size: 5rem; /* Größer gemacht, um dem Bild zu entsprechen */
        font-weight: 900;
        color: var(--secondary-color);
        margin: 0;
        line-height: 1;
        z-index: 200;
    }

    .hero-left .line {
        border: 4px solid var(--accent-color);
        width: 90px;
        margin: 10px 0 20px 0;
        border-radius: 3px;
    }

    .hero-left .description {
        color: var(--tertiary-color);
        font-size: 16px;
        line-height: 1.6;
        width: 90%;
    }


    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-image::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background-color: var(--hiro-image-back-color);
        border-radius: 50%;
        z-index: -1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.3;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: cover;
        /* border-radius: 8px; -- Entfernt für Überlappung */
        z-index: 44; /* Muss über der Logo-Leiste sein */
        position: relative;
        margin-bottom: -100px; /* Stellt die Überlappung sicher */
    }

    .hero-right {
        text-align: left;
        animation: fadeInSlideLeft 1s ease-out;
        z-index: 2;
    }

    .hero-right .services-title {
        font-size: 16px;
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .hero-right .services-heading {
        font-size: 1.4rem;
        color: var(--secondary-color);
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .hero-right .show-more {
        color: var(--accent-color);
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        display: inline-block;
        transition: letter-spacing 0.3s ease, transform 0.3s ease;
    }

    .hero-right .show-more:hover {
        letter-spacing: 1.5px;
        transform: translateX(5px);
    }

    .hero-social-icons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .hero-icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--card-bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: var(--tertiary-color);
        font-size: 18px;
        z-index: 100;
    }

    .hero-icon-circle:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 0 15px var(--accent-color);
    }

    /* --- Logo-Leiste-Bereich --- */
    .logo-bar {
        width: 90%;
        margin: 0px auto 50px auto;
        background-color: var(--card-bg-color);
        border-radius: 5px;
        padding: 30px 40px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        box-shadow: none;
        position: relative; /* Für z-index-Kontext */
        z-index: 10; /* Unter dem Heldenbild */
    }

    .logo-item {
        color: var(--secondary-color);
        font-size: 22px; /* Angepasst */
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }
    
    .logo-item i {
        font-size: 28px; /* Icon-Größe angepasst */
    }

    .logo-item:hover {
        color: var(--secondary-color);
        transform: translateY(0px) scale(1.02);
        cursor: default;
    }


    /* --- "Was ich tun kann"-Bereich --- */
    .what-i-do-section {
        width: 100%;
        background-color: var(--primary-color);
        padding: 50px 5% 100px 5%;
    }

    .what-i-do-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 60px;
    }

    .what-i-do-left {
        flex: 1;
        min-width: 320px;
    }

    .what-i-do-left h1 {
        font-size: 3rem;
        color: var(--secondary-color);
        font-weight: 800;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .what-i-do-left .description {
        font-size: 16px;
        line-height: 1.6;
        width: 90%;
        color: var(--tertiary-color);
        margin-bottom: 40px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 3rem;
        color: var(--accent-color);
        margin: 0 0 5px 0;
        font-weight: 900;
    }

    .stat-item p {
        font-size: 16px;
        color: var(--tertiary-color);
        margin: 0;
    }

    .what-i-do-right {
        flex: 1;
        min-width: 320px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .service-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: var(--primary-color);
        padding: 15px 25px;
        border-radius: 8px;
        border: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-item:hover {
        background-color: var(--card-bg-color);
        box-shadow: none;
    }

    .service-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
        background-color: var(--card-bg-color); /* Hintergrund für Platzhalter */
    }

    .service-text {
        flex-grow: 1;
    }

    .service-text h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 2px 0;
    }

    .service-text p {
        font-size: 0.9rem;
        color: var(--tertiary-color);
        margin: 0;
    }

    .service-arrow {
        margin-left: auto;
        font-size: 1.5rem;
        color: var(--accent-color); /* Geändert, um immer gelb zu sein */
        transition: all 0.3s ease;
    }

    .service-item:hover .service-arrow {
        /* color: var(--accent-color); -- War bereits gelb */
        transform: translateX(5px) scale(1.1);
    }


    /* --- Footer-Bereiche --- */
    .get-in-touch {
        width: 100%;
        background: var(--dark-bg-color);
        padding: 50px 5%;
        text-align: center;
        margin-top: 50px;
    }

    .footer-heading {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .footer-text {
        font-size: 1rem;
        color: var(--tertiary-color);
        margin-bottom: 40px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .social-icon {
        color: var(--secondary-color);
        font-size: 30px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .social-icon span {
        margin-left: 10px;
        font-size: 1.2rem;
        color: var(--tertiary-color);
        transition: color 0.3s ease;
    }

    .social-icon:hover {
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .social-icon:hover span {
        color: var(--accent-color);
    }


    /* Endgültiger Footer */
    .footer {
        width: 100%;
        background: var(--dark-bg-color);
        padding: 20px 5%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links a {
        margin: 0 15px;
        color: var(--tertiary-color);
        transition: 0.3s;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: var(--accent-color);
    }

    .footer-copy {
        font-size: 14px;
        color: var(--tertiary-color);
        margin-top: 15px;
    }


    /* --- Keyframe-Animationen --- */
    @keyframes fadeInSlideRight {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInSlideLeft {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* =========================
                                🔹 RESPONSIVES DESIGN 🔹
                                ========================= */

    /* --- Tablet-Ansicht (<= 1024px) --- */
    @media (max-width: 1024px) {
        .hero-section {
            /* Stapeln des rechten Bereichs unter das Bild */
            grid-template-columns: 1.5fr 1fr;
            padding-top: 20px;
            min-height: auto;
        }

        .hero-left {
            grid-column: 1 / 2;
            padding-top: 20px;
        }

        .hero-image {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            padding-top: 20px;
            justify-content: flex-end;
            align-items: flex-start; /* Verhindert, dass es nach unten gedrückt wird */
        }

        .hero-image::before {
            width: 400px;
            height: 400px;
        }

        .hero-image img {
            max-width: 400px;
            margin-bottom: -100px; /* Behält Überlappung bei */
        }

        .hero-right {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            padding-top: 0;
        }

        .hero-left .title {
            font-size: 4rem;
        }
    }

    /* --- Mobile Ansicht (<= 768px) --- */
    @media (max-width: 768px) {

        /* 1. Navbar-Anpassungen für Mobile */
        .nav-links {
            /* Standardmäßig auf Mobilgeräten ausblenden */
            display: none;
            flex-direction: column;
            width: 100%;
            position: absolute;
            top: 70px;
            left: 0;
            background-color: var(--card-bg-color);
            border-bottom: 1px solid var(--primary-color);
            padding-bottom: 10px;
            align-items: center; /* Links zentrieren */
        }
        
        /* Zeige das Hamburger-Icon an (ist bereits durch Basisstile block) */
        /* .menu-icon-label { display: block; } */

        /* Verstecke das Desktop-LinkedIn-Icon auf Mobilgeräten */
        .nav-icons-right .nav-icon {
             display: none;
        }
        /* Zeige aber das Menü-Label (Hamburger) im Icon-Container */
         .nav-icons-right .menu-icon-label {
             display: block;
         }
        
        /* CSS-HACK: Zeige nav-links an, wenn die Checkbox gecheckt ist */
        #menu-toggle:checked ~ .nav-links {
            display: flex;
        }

        .navbar {
            flex-direction: row;
            justify-content: space-between;
        }


        /* 2. Hero-Bereich-Anpassungen für Mobile */
        .hero-section {
            grid-template-columns: 1fr;
            text-align: center;
            padding-top: 0;
        }

        .hero-left,
        .hero-image,
        .hero-right {
            grid-column: 1 / 2;
            grid-row: auto;
            padding-top: 30px;
            margin-bottom: 0;
        }
        
        .hero-left {
            order: 1; /* Text zuerst */
        }
        .hero-image {
            order: 2; /* Bild als Zweites */
            justify-content: center;
            padding-top: 10px;
        }
        .hero-right {
            order: 3; /* Service-Link als Drittes */
            text-align: center;
        }

        .hero-image::before {
            width: 300px;
            height: 300px;
        }

        .hero-image img {
            max-width: 300px;
            margin-bottom: -80px; /* Überlappung für Mobile anpassen */
        }

        .hero-left .subtitle {
            font-size: 2rem;
        }

        .hero-left .title {
            font-size: 2.8rem;
            padding-bottom: 10px;
        }

        .hero-left .line {
            margin: 0 auto 20px auto;
        }

        .hero-left .description {
            width: 100%;
        }

        .hero-social-icons {
            justify-content: center;
        }
        
        .logo-bar {
            padding-top: 100px; /* Platz für das überlappende Bild auf Mobilgeräten */
            margin-top: 0;
        }

        /* 3. "What I Do"-Anpassungen für Mobile */
        .what-i-do-content {
            flex-direction: column;
        }

        .what-i-do-left {
            text-align: center;
        }

        .what-i-do-left .description {
            width: 100%;
        }

        .what-i-do-left h1 {
            font-size: 2.5rem;
        }
        
        .stats-grid {
            gap: 20px;
        }
        .stat-item h2 {
            font-size: 2.5rem;
        }

    }

  




