    :root {
        --color-bg-light: #fcfcfc; 
        --color-text-dark: #1d1d1f; 
        --color-accent-copper: #c37f59; 
        --color-accent-hover: #a66a4a;
        --color-border: #e2e2e7; 
        --max-width: 1100px;
        --shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { 
        scroll-behavior: smooth; 
        scroll-padding-top: 100px;
    }
    
    body { 
        font-family: 'Inter', sans-serif; 
        line-height: 1.6;
        background-color: var(--color-bg-light); 
        color: var(--color-text-dark);
        -webkit-font-smoothing: antialiased;
    }

    /* ====== Navigation ====== */
    header {
        position: sticky; top: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--color-border);
        z-index: 1000;
        padding: 15px 0;
    }
    .header-container {
        max-width: var(--max-width);
        margin: 0 auto;
        display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
    }
    .logo { font-weight: 700; font-size: 1.2rem; color: var(--color-accent-copper); text-decoration: none; }
    .logo img { max-width: 160px; }

    nav ul { list-style: none; display: flex; gap: 30px; }
    nav ul li a { color: var(--color-text-dark); text-decoration: none; font-weight: 500; font-size: 1.3rem; transition: 0.3s; }
    nav ul li a:hover { color: var(--color-accent-copper); }
    
    /* ====== Hero Sektion ====== */
    #hero { 
        padding: 150px 20px; 
        background: linear-gradient(rgba(252, 252, 252, 0.85), rgba(252, 252, 252, 0.85)), 
                    url('../img/content/slider7.png') no-repeat center center;
        background-size: cover;
        text-align: center;
        min-height: 80vh; 
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    }
    .hero-content { max-width: 800px; margin: 0 auto; }
    h1 {
        font-size: 3.5rem; 
        line-height: 1.1; 
        margin-bottom: 25px; 
        letter-spacing: -1px;
    }
    h1 span { color: var(--color-accent-copper); }
    .hero-sub { font-size: 1.25rem; color: #636366; margin-bottom: 40px; }

    /* ====== Buttons ====== */
    .cta-button { 
        display: inline-block; background: var(--color-accent-copper); color: white; 
        padding: 18px 36px; border-radius: 8px; text-decoration: none; font-weight: 600;
        transition: all 0.3s ease; border: none; cursor: pointer;
    }
    .cta-button:hover { background: var(--color-accent-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(195, 127, 89, 0.2); }
    .cta-secondary { background: transparent; color: var(--color-text-dark); border: 1px solid var(--color-border); margin-left: 10px; }

    /* ====== Sektionen & Galerie-Logik ====== */
    section { padding: 80px 20px; }
    .container { max-width: var(--max-width); margin: 0 auto; }
    
    /* Überschriften ohne den Unterstrich */
    h2 { font-size: 2.2rem; margin-bottom: 15px; text-align: center; position: relative; }
    h2::after { display: none; } /* Strich entfernt */

    /* Die Beschreibungstexte unter den H2 */
    .container > p {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #636366;
        font-size: 1.1rem;
    }

    /* Abstand zwischen den Sektionen innerhalb der Galerie */
    .container + .container {
        margin-top: 80px;
    }

    /* ====== Info Cards ====== */
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .card { 
        background: #fff; padding: 40px; border-radius: 16px; 
        border: 1px solid var(--color-border); transition: 0.3s;
        display: flex; flex-direction: column; justify-content: space-between;
        height: 100%;
    }
    .card:hover { border-color: var(--color-accent-copper); transform: translateY(-5px); box-shadow: var(--shadow); }
    .card h3 { margin-bottom: 15px; color: var(--color-accent-copper); }

    .card-img {
        margin-top: 20px;
        position: relative;
        display: flex; justify-content: center;
        overflow: hidden;
        border-radius: 12px;
        cursor: zoom-in;
    }

    .card-img::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        width: 50px; height: 50px;
        background-color: rgba(195, 127, 89, 0.9);
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/><path d="M10 7v2H8v2h2v2h2v-2h2V9h-2V7h-2z"/></svg>');
        background-size: 30px; background-repeat: no-repeat; background-position: center;
        border-radius: 50%; opacity: 0; transition: all 0.3s ease; z-index: 2;
    }

    .card-img:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .card-img img { max-width: 100%; height: auto; transition: transform 0.3s ease; }
    .card-img:hover img { transform: scale(1.05); }

    /* ====== Über Mich ====== */
    .about-box { 
        display: flex; align-items: center; gap: 50px; background: #fff; 
        padding: 50px; border-radius: 24px; box-shadow: var(--shadow);
    }
    .about-text { flex: 2; }
    .about-badge { 
        flex: 1; background: var(--color-accent-copper); color: white; 
        padding: 30px; border-radius: 15px; text-align: center;
    }
    .badge-year { font-size: 3rem; font-weight: 800; display: block; }

    /* ====== Galerie ====== */
    .gallery { 
        display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 20px; margin-bottom: 20px;
    }
    .img-box { 
        aspect-ratio: 4/2.66; background: #eee; border-radius: 12px; 
        display: flex; align-items: center; justify-content: center;
        border: 1px solid var(--color-border); overflow: hidden;
        transition: 0.3s; cursor: zoom-in;
    }
	
	.img-box.landscape { 
        aspect-ratio: 4/2.66; background: #eee; border-radius: 12px; 
        display: flex; align-items: center; justify-content: center;
        border: 1px solid var(--color-border); overflow: hidden;
        transition: 0.3s; cursor: zoom-in;
    }
	
		.img-box.portrait { 
        aspect-ratio: 4/5; background: #eee; border-radius: 12px; 
        display: flex; align-items: center; justify-content: center;
        border: 1px solid var(--color-border); overflow: hidden;
        transition: 0.3s; cursor: zoom-in;
    }
	
    .img-box img { width: 100%; height: auto; transition: transform 0.3s ease; }
    .img-box:hover img { transform: scale(1.05); }
    .img-box:hover { border-color: var(--color-accent-copper); }

    /* ====== Lightbox ====== */
    .lightbox {
        display: none; position: fixed; z-index: 2000;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(5px);
        cursor: zoom-out; align-items: center; justify-content: center;
    }
    .lightbox img {
        max-width: 90%; max-height: 80vh; border-radius: 8px;
        box-shadow: 0 0 30px rgba(0,0,0,0.5); transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    .lightbox.active { display: flex; }
    .lightbox.active img { transform: scale(1); }

    /* ====== Footer ====== */
    footer { background: #1d1d1f; color: #a1a1a6; padding: 60px 20px; text-align: center; }
    footer a { color: #fff; text-decoration: none; margin: 0 10px; font-size: 0.9rem; }

    @media (max-width: 768px) {
        h1 { font-size: 2.5rem; }
        .about-box { flex-direction: column; padding: 30px; }
        nav { display: none; }
    }