        :root {
            --primary-green: #244330;
            --text-dark: #1b3324;
            --accent-gold: #b39b67;
            --bg-base: #f4f2ea;
            --menu-text-color: #9cb3a1;
            /* System-Font-Stack: Sicher und schnell */
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
        }

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

a {
  color: blue important!;
  text-decoration: none important!; /* no underline */
}
        body, html {
            height: 100%;
            font-family: var(--font-main);
            background-color: var(--bg-base);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
			
			 

        .background-container {
            background-image: url("hintergrund.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .background-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(244, 242, 234, 0.95) 0%, rgba(244, 242, 234, 0.6) 40%, rgba(244, 242, 234, 0.95) 100%);
            z-index: 1;
        }

        header {
            position: sticky;
            top: 0;
            background: linear-gradient(to right, #1a3022, #2d5439);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            height: 70px;
            z-index: 10;
        }

        .logo-area {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .logo-img {
            max-height: 60px;
            width: auto;
            object-fit: contain;
        }

        .domain-name {
            font-size: 16px;
            color: var(--menu-text-color);
            letter-spacing: 0.5px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 1px;
            background-color: var(--menu-text-color);
        }

        .nav-menu {
            display: none;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: #1a3022;
            flex-direction: column;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu a {
            padding: 15px;
            color: var(--menu-text-color);
            text-decoration: none;
            border-bottom: 1px solid rgba(156, 179, 161, 0.2);
            font-weight: 500;
        }

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Ändere "center" zu "flex-start", um den Inhalt oben zu fixieren */
    justify-content: flex-start; 
    
    /* Jetzt kannst du den Abstand mit Padding genau steuern */
    padding: 50px 8% 10% 8%; 
    
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

        .subtitle {
            color: var(--accent-gold);
            font-size: clamp(12px, 2vw, 15px);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 20px;
      
            display: flex;
            align-items: center;
        }

        .subtitle::before {
            content: "";
            height: 2px;
            width: 30px;
            background-color: var(--accent-gold);
            margin-right: 15px;
            flex-shrink: 0;
        }
			.profile-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3vh;
    animation: fadeIn 0.8s ease-out;
}

.profile-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(36, 67, 48, 0.1);
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
  
    letter-spacing: 0.5px;
}

.profile-status {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 900;
   
    letter-spacing: 1.5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
			

        h1, h2 {
            color: var(--text-dark);
            line-height: 1.1;
            font-weight: 900;
            text-transform: uppercase;
            /* Verhindert das Abschneiden langer Wörter */
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
        }

        h1 {
            /* Passt sich der Bildschirmbreite an: Minimum 32px, Maximum 85px */
            font-size: clamp(32px, 10vw, 85px);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        h2 {
            font-size: clamp(22px, 6vw, 55px);
            margin-bottom: 25px;
            color: #274733; 
        }

        p.description {
            color: #3a423d;
            font-size: clamp(15px, 4vw, 20px);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 650px;
            font-weight: 500;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--text-dark), #325740);
            color: var(--accent-gold);
            text-decoration: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            text-transform: uppercase;
            border: 1px solid #4a755a;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .background-container::before {
                background: linear-gradient(to right, rgba(244, 242, 234, 0.98) 0%, rgba(244, 242, 234, 0.85) 50%, rgba(244, 242, 234, 0.2) 100%);
            }
            main { padding: 10% 8%; }
            .hamburger { display: none; }
            .nav-menu {
                display: flex;
                position: static;
                flex-direction: row;
                width: auto;
                background: transparent;
                box-shadow: none;
            }
            .nav-menu a { border-bottom: none; padding: 0 15px; }
            .domain-name { display: none; }
        }