    :root {
            --bg-color: #2d4262;
            --header-bg: #1a1a1a;
            --card-bg: #1a1a1a;
            --text-color: #ffefdb;
            --accent: #d09683;
            --border-color: #2a2a2a;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            margin: 0;
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- NAVIGATION --- */
        header {
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

        .logo { 
		font-size: 1.2rem; 
		letter-spacing: 1px; 
		text-decoration: none; 
		color: var(--text-color);
		}
        .logo strong { color: var(--accent); }
		

        #menu-toggle { display: none; }
        .hamburger { cursor: pointer; display: flex; flex-direction: column; gap: 5px; width: 30px; }
        .hamburger span { display: block; height: 3px; background: var(--text-color); border-radius: 3px; transition: var(--transition); }
        
        .nav-menu {
            position: absolute; top: 45px; right: 0; background: var(--header-bg);
            padding: 1rem; list-style: none; border-radius: 8px; display: none;
            min-width: 180px; box-shadow: var(--shadow); border: 1px solid var(--border-color);
        }
		
		.nav-menu a {
			color: var(--text-color);
			text-decoration: none;
			transition: var(--transition);
		}
		
		.nav-menu a:hover,
		.nav-menu a:active,
		.nav-menu a:focus {
			color: var(--accent);
		}

        #menu-toggle:checked ~ .nav-menu { display: block; }

        /* --- HERO TEXT --- */
        .intro-section {
            padding: 50px 5% 20px;
            max-width: 800px;
            margin: 0 auto;
/*            text-align: center;   */
        }

     /*   .intro-section h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 20px; }   */
		.intro-section h1 { font-size: clamp(1.8rem, 3vw, 2rem); margin-bottom: 20px; text-align: center; }
        .intro-section p { font-size: clamp(1rem, 2vw, 1.2rem); color: #ffefdb; line-height: 1.6; text-align: left; }

        /* --- GRID DER LINK-KARTEN --- */
        .link-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
            padding: 40px 5%;
  /*          max-width: 1200px;   */
            max-width: 900px;
  /*          margin: 0 auto flex;   */
            margin: 0 auto;
            justify-content: center;
  /*          flex-grow: 1;         */
        }

        @media (min-width: 768px) {
            .link-grid, .gallery  { 
			grid-template-columns: 1fr 1fr;
			}
        }

        .link-card {
            text-decoration: none; /* Entfernt Unterstreichung vom Link */
            color: inherit;
            overflow: hidden;
            border-radius: 12px;
            background: var(--card-bg);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .img-container { overflow: hidden; aspect-ratio: 16/9; }
        .link-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: var(--transition); }
        .link-card:hover img { transform: scale(1.05); }

        .image-title {
            padding: 15px;
            font-size: 0.95rem;
            font-weight: 500;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        /* --- FOOTER --- */
        footer {
            padding: 40px 5%;
            background: var(--header-bg);
            border-top: 1px solid var(--border-color);
            text-align: center;
            margin-top: 60px;
        }

        footer a { color: var(--accent); text-decoration: none; font-size: 0.9rem; }