:root {
            --primary: #2563eb;
            --primary-hover: #1d4ed8;
            --dark: #0f172a;
            --light: #f1f5f9;
            --text: #334155;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        /* Reset & Basis */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; line-height: 1.5; color: var(--text); background-color: var(--white); overflow-x: hidden; }

        /* NAVIGATION */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 2000;
            box-shadow: 0 1px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 2rem;
        }

        .logo img { max-height: 50px; width: auto; display: block; }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover { color: var(--primary); }

        /* BURGER MENU STYLES */
        .burger {
            display: none;
            cursor: pointer;
            z-index: 2100;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* HERO */
        header {
            min-height: 80vh; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 2rem 40px;
            background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                        url("/header/header1.jpg") center center / cover no-repeat;
            color: var(--white);
            text-align: center;
        }

        .hero-content { max-width: 800px; }
        .hero-content h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.1; }
        .hero-content p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

        .btn {
            display: inline-block;
            padding: 1rem 2.2rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

        /* SECTIONS */
        section { padding: 60px 2rem; max-width: 1300px; margin: auto; }
        .section-title { text-align: center; margin-bottom: 3rem; }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .card {
            background: var(--light);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .card:hover { transform: translateY(-5px); background: var(--white); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 200px; object-fit: cover; display: block; }
        .card-content { padding: 1.5rem; }
        .card h3 { margin-bottom: 0.5rem; color: var(--dark); }

        /* ABOUT */
        #uber-uns {
            max-width: 100%;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .about-inner {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .about-inner img { width: 100%; border-radius: 12px; display: block; }

        /* FOOTER */
        footer { background: #0b0f1a; color: #f8fafc; padding: 60px 2rem 20px; }
        .footer-grid {
            max-width: 1200px; margin: 0 auto 40px;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
        }
        .footer-grid h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1.5rem; font-weight: 600; }
        .footer-grid p, .footer-grid ul li { color: #94a3b8; font-size: 0.95rem; margin-bottom: 0.8rem; line-height: 1.6; }
        .footer-grid ul { list-style: none; }
        .footer-grid ul li a { color: #94a3b8; text-decoration: none; transition: var(--transition); }
        .footer-grid ul li a:hover { color: var(--primary); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
        .footer-bottom p { color: #64748b; font-size: 0.85rem; }
        .minimap { width: 600px; height: 250px; background: #1e293b; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

        /* BACK TO TOP */
        #backToTop {
            position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
            background: var(--primary); color: white; border: none; border-radius: 50%;
            cursor: pointer; display: none; z-index: 1000; transition: var(--transition); font-size: 18px;
        }

        /* RESPONSIVE / MOBILE NAV LOGIC */
        @media (max-width: 768px) {
            .burger { display: block; }
            
            .nav-links {
                position: fixed;
                right: 0px;
                height: 100vh;
                top: 0;
                background-color: var(--white);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 70%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                box-shadow: -10px 0 20px rgba(0,0,0,0.05);
            }

            .nav-links li { opacity: 0; }

            .nav-active { transform: translateX(0%); }

            /* Animationen für die Burger-Striche */
            .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .toggle .line2 { opacity: 0; }
            .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
            
            section { padding: 40px 1.5rem; }
            .about-inner { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* Fade Animation für Listenpunkte im Mobile Menu */
        @keyframes navLinkFade {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0px); }
        }
		
		/* CONTENT SECTION */
        section { padding: 60px 2rem; max-width: 1300px; margin: auto; }
        #privacy-content { max-width: 900px; margin: auto; }
        .legal-box h2 { color: var(--dark); margin: 2rem 0 1rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; }
        .legal-box h3 { margin-top: 1.5rem; color: var(--primary); font-size: 1.15rem; margin-bottom: 0.5rem;}
        .legal-box p { margin-bottom: 1rem; text-align: justify; }
        .legal-box ul { margin-bottom: 1rem; margin-left: 1.5rem; }
		
		/* CONTENT SECTION */
        section { padding: 60px 2rem; max-width: 1300px; margin: auto; }
        #impressum-content { max-width: 800px; margin: auto; }
        .legal-box { background: var(--white); padding: 0; }
        .legal-box h2 { color: var(--dark); margin-bottom: 1.5rem; }
        .legal-box h3 { margin-top: 1.5rem; color: var(--primary); font-size: 1.1rem; margin-bottom: 0.5rem;}
        .legal-box p { margin-bottom: 0.5rem; }