/* --- GRUNDLAGEN (ORDNUNG) --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: 'Georgia', serif; 
    background-color: #fdfdfd; 
    color: #222; 
    line-height: 1.6; 
    padding-top: 70px; /* Platz für fixierte Navigation */
}

/* --- NAVIGATION --- */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 50px; 
    background: rgba(255, 255, 255, 0.95);
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #eee;
}

nav .logo { 
    font-weight: bold; 
    letter-spacing: 3px; 
    font-family: sans-serif; 
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
    align-items: center; 
}

nav a { 
    text-decoration: none; 
    color: #555; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

nav a:hover { 
    color: #ff0050; 
}

.nav-tiktok { 
    color: #ff0050 !important; 
    font-weight: bold; 
}

/* --- VIDEO HEADER --- */
header {
    position: relative; 
    height: 75vh; 
    width: 100%; 
    overflow: hidden;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: white;
}

#bg-video {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    min-width: 100%; 
    min-height: 100%;
    z-index: -1; 
    transform: translate(-50%, -50%); 
    object-fit: cover;
}

.header-overlay {
    z-index: 1; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 40px 60px; 
    text-align: center; 
    backdrop-filter: blur(3px);
}

header h1 { 
    font-size: 3.5rem; 
    font-weight: 300; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

/* --- GALERIE & TRACING-EFFEKT (CHAOS) --- */
.section-title { 
    text-align: center; 
    font-size: 2rem; 
    margin: 80px 0 40px 0; 
    font-weight: 300; 
}

.grid-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px; 
    padding: 0 50px 100px 50px;
}

.art-item {
    background: #f0f0f0; 
    height: 450px; 
    position: relative; 
    overflow: hidden;
    transition: all 0.5s ease; 
    border: 1px solid #eee;
}

/* Der versetzte Look (Chaos & Ordnung) */
.art-item:nth-child(odd) { transform: translateY(-30px); }
.art-item:nth-child(even) { transform: translateY(30px); }

/* Tracing Hover Logik */
.tracing-effect { 
    cursor: crosshair; 
}

.tracing-effect img {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.img-top { 
    z-index: 2; 
    opacity: 1; 
}

.img-back { 
    z-index: 1; 
}

/* Das obere Bild blendet aus, das Tracing darunter wird sichtbar */
.tracing-effect:hover .img-top {
    opacity: 0;
}

.hover-info {
    position: absolute; 
    bottom: 15px; 
    right: 15px; 
    z-index: 3;
    background: rgba(255, 255, 255, 0.8); 
    font-size: 0.7rem; 
    padding: 5px 12px;
    letter-spacing: 1px; 
    text-transform: uppercase; 
    pointer-events: none;
}

/* --- ÜBER MICH & TIKTOK --- */
.about-section { 
    padding: 120px 50px; 
    background: #fff; 
}

.about-container { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 50px; 
    max-width: 1100px; 
    margin: 0 auto; 
    flex-wrap: wrap; 
}

.about-image img { 
    width: 100%; 
    max-width: 450px; 
    height: auto; 
    box-shadow: 25px 25px 0px #f0f0f0; 
}

.about-text { 
    flex: 1; 
    min-width: 300px; 
}

.tiktok-link {
    display: inline-block; 
    margin-top: 30px; 
    padding: 1