/* --- DESIGN SYSTEM --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #111111;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --accent: #c5a059;
    --accent-glow: rgba(197, 160, 89, 0.2);
    --font-head: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-text); overflow-x: hidden; line-height: 1.6; }
.highlight { color: var(--accent); }

/* --- HEADER --- */
.main-header { position: absolute; top: 0; width: 100%; padding: 30px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; mix-blend-mode: difference; }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.header-social a { color: white; font-size: 1.2rem; margin-left: 20px; transition: var(--transition); }
.header-social a:hover { color: var(--accent); }

/* --- HERO SECTION --- */
.hero-screen { height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; }
.camera-meta { position: absolute; bottom: 10%; right: 5%; font-family: var(--font-text); font-size: 0.7rem; letter-spacing: 4px; color: var(--accent); writing-mode: vertical-rl; opacity: 0.5; z-index: 10; text-transform: uppercase; }
.hero-image-wrapper { position: absolute; right: 0; top: 0; width: 65%; height: 100%; z-index: -1; overflow: hidden; }
.hero-image-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 50%, transparent 0%, var(--bg-dark) 85%); z-index: 2; }
.grain-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Static_Noise_Small.png'); opacity: 0.04; pointer-events: none; z-index: 3; }
.hero-portrait { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.5); transition: transform 2s ease, filter 1.5s ease; transform: scale(1); }
.hero-screen:hover .hero-portrait { filter: grayscale(20%) brightness(0.7); transform: scale(1.05); }

.hero-content { max-width: 650px; z-index: 10; }
.pre-title { color: var(--accent); font-size: 0.8rem; letter-spacing: 5px; margin-bottom: 20px; display: block; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; margin-bottom: 30px; font-style: italic; }
.hero-social-block { margin: 40px 0; padding-left: 25px; border-left: 1px solid var(--accent); }
.hero-social-block span { display: block; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 10px; }
.bold-social-link { font-family: var(--font-head); font-size: 2rem; color: white; text-decoration: none; transition: var(--transition); }
.bold-social-link:hover { color: var(--accent); padding-left: 10px; }
.scroll-btn { background: transparent; border: none; color: white; font-family: var(--font-text); font-size: 0.8rem; letter-spacing: 2px; cursor: pointer; display: flex; align-items: center; gap: 15px; }
.scroll-btn i { padding: 15px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; transition: var(--transition); }
.scroll-btn:hover i { background: var(--accent); color: black; border-color: var(--accent); }

/* --- FULLSCREEN OVERLAY PORTFOLIO --- */
.portfolio-split {
    display: block; /* Hebt das alte Split-Layout auf */
    height: 100vh;
    width: 100vw;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* 1. Transparentes Overlay-Menü (Oben Links) */
.category-sidebar {
    position: absolute;
    top: 12%; /* Schiebt es nach oben */
    left: 5%;
    width: auto;
    min-width: 280px;
    background: rgba(10, 10, 10, 0.4); /* Transparenter dunkler Hintergrund */
    backdrop-filter: blur(15px); /* Edler Glas-Effekt */
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 4px solid var(--accent); /* Goldene Linie als Akzent */
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.cat-link {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #888;
    cursor: pointer;
    padding: 15px 0 15px 15px;
    border-left: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cat-link:hover { color: white; }

/* KEIN ITALIC MEHR! Nur noch Farbe und eine feine Linie */
.cat-link.active {
    color: var(--accent);
    border-left: 2px solid var(--accent);
    font-weight: bold;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    
    /* Unsichtbar im Standardzustand */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
/* 2. Content & Galerie (Riesige Bilder) */
.category-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.gallery-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

/* Bild füllt den gesamten Bildschirm */
.main-img-viewport {
    width: 100vw;
    height: 100vh;
    max-width: none;
    border: none;
    box-shadow: none;
    position: absolute;
    top: 0; left: 0;
}

.artist-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1); /* Leicht abgedunkelt, damit das Menü lesbar bleibt */
    transition: opacity 0.6s ease;
}

/* 3. Thumbnails (Schwebend auf der rechten Seite) */
.thumb-sidebar {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.thumb { width: 70px; height: 70px; object-fit: cover; cursor: pointer; filter: grayscale(100%) brightness(0.5); border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); }
.thumb:hover, .thumb.active-thumb { filter: grayscale(0%) brightness(1); border-color: var(--accent); transform: scale(1.1); box-shadow: 0 0 20px rgba(0,0,0,0.8); }

/* Großer Hintergrund-Text */
.category-title-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-head); font-size: 20vw; color: rgba(255,255,255,0.03); white-space: nowrap; z-index: 2; pointer-events: none; font-weight: 700; }

/* 4. Info-Glaskarte (Unten Links) */
.artist-glass-card {
    position: absolute;
    bottom: 8%;
    left: 5%;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(15px);
    padding: 30px;
    max-width: 400px;
    z-index: 20;
    border-top: 2px solid var(--accent);
}

.artist-glass-card h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 5px; text-transform: uppercase; }
.style-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Fade-In Animation */
.fade-in { animation: fadeIn 0.6s ease forwards; width: 100%; height: 100%; position: absolute; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- MOBILE ANPASSUNGEN --- */
@media (max-width: 768px) {
    .category-sidebar { top: 90px; left: 5%; width: 90%; min-width: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 15px; background: rgba(10,10,10,0.8); border-left: none; border-bottom: 2px solid var(--accent); }
    .cat-link { font-size: 1rem; padding: 10px; border-left: none; }
    .cat-link.active { border-left: none; border-bottom: 2px solid var(--accent); }
    
    .thumb-sidebar { right: auto; left: 50%; top: auto; bottom: 25%; transform: translateX(-50%); flex-direction: row; }
    .thumb { width: 50px; height: 50px; }
    
    .artist-glass-card { bottom: 5%; left: 5%; width: 90%; padding: 20px; }
}

/* --- CINEMATIC TEXT NAVIGATION --- */
.slider-nav { position: absolute; bottom: 50px; left: 0; width: 100%; padding: 0 5%; display: flex; justify-content: space-between; z-index: 100; pointer-events: none; }
.nav-btn { background: transparent; border: none; color: white; cursor: pointer; pointer-events: all; display: flex; flex-direction: column; transition: var(--transition); }
#prev-btn { align-items: flex-start; text-align: left; }
#next-btn { align-items: flex-end; text-align: right; }
.nav-label { font-size: 0.65rem; letter-spacing: 4px; color: var(--text-muted); margin-bottom: 5px; transition: 0.3s; }
.nav-cat { font-family: var(--font-head); font-size: 1.8rem; color: white; letter-spacing: 2px; font-style: italic; transition: 0.3s; }
.nav-btn:hover .nav-cat { color: var(--accent); transform: scale(1.05); }
.nav-btn:hover .nav-label { color: white; }

/* --- PRICING SECTION --- */
.pricing-section { padding: 120px 5%; background: var(--bg-surface); }
.section-title { font-family: var(--font-head); font-size: 3rem; text-align: center; margin-bottom: 60px; }
.price-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.price-card { background: #050505; padding: 50px 40px; border: 1px solid #222; flex: 1; min-width: 300px; max-width: 380px; text-align: center; transition: var(--transition); }
.price-card.featured { border-color: var(--accent); background: #080808; transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.price-card h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 15px; letter-spacing: 2px; }
.price { font-size: 2.5rem; color: var(--accent); font-weight: 700; margin-bottom: 30px; font-family: var(--font-head); }
.price-card ul { list-style: none; margin-bottom: 0; }
.price-card li { color: var(--text-muted); margin-bottom: 15px; font-size: 0.95rem; }

/* --- QUICK BOOKING --- */
.quick-booking { padding: 100px 5%; background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.inline-form { display: flex; gap: 20px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.inline-form input, .inline-form select { flex: 1; min-width: 250px; padding: 20px; background: #000; border: 1px solid #222; color: white; font-family: var(--font-text); }
.inline-form input:focus { border-color: var(--accent); outline: none; }
.confirm-btn { flex: 1.5; background: var(--accent); color: black; border: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: var(--transition);    padding: 20px; }
.confirm-btn:hover { background: white; }

/* --- FOOTER --- */
.main-footer { padding: 100px 5% 40px; background: #050505; border-top: 1px solid #111; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-info { max-width: 350px; }
.footer-info p { color: var(--text-muted); margin-top: 20px; font-size: 0.95rem; }
.footer-contact h4 { font-family: var(--font-head); color: var(--accent); font-size: 1.2rem; margin-bottom: 25px; letter-spacing: 2px; }
.footer-contact p { color: var(--text-muted); margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.footer-contact i { color: var(--accent); width: 20px; text-align: center; }
.footer-bottom { text-align: center; margin-top: 80px; padding-top: 30px; border-top: 1px solid #111; color: #444; font-size: 0.8rem; }
/* Styling für die neuen Footer-Links */
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent);
}

/* Styling für den Demo-Hinweis */
.demo-notice {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #555;
}

.demo-notice a {
    text-decoration: none;
    transition: var(--transition);
}

.demo-notice a:hover {
    color: white;
}

/* --- RESPONSIVE MOBILE OPTIMIERUNG --- */
@media (max-width: 1024px) {
    .hero-image-wrapper { width: 100%; opacity: 0.5; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-social-block { border-left: none; border-top: 1px solid var(--accent); padding: 20px 0 0 0; }
    .scroll-btn { justify-content: center; }
}

/* --- NATIVE APP MOBILE EXPERIENCE (WOW-EFFEKT) --- */
@media (max-width: 768px) {
    /* 1. Container als App-Screen fixieren */
    .portfolio-split { 
        height: 100dvh; 
        display: block; 
        overflow: hidden; 
    }
    
    /* 2. App-Style Pill-Navigation (Oben) */
    .category-sidebar { 
        position: absolute; 
        top: 80px; /* Sitzt direkt unter dem Logo */
        left: 0; 
        width: 100vw; 
        flex-direction: row; 
        flex-wrap: nowrap; 
        overflow-x: auto; 
        justify-content: flex-start; 
        padding: 10px 5%; 
        background: transparent; 
        border: none; 
        z-index: 60; 
        -ms-overflow-style: none; /* Versteckt die Scrollbar */
        scrollbar-width: none; 
    }
    .category-sidebar::-webkit-scrollbar { display: none; } /* Safari Fix */

    .cat-link { 
        font-size: 0.85rem; 
        padding: 8px 20px; 
        background: rgba(15, 15, 15, 0.5); 
        backdrop-filter: blur(10px); 
        border: 1px solid rgba(255,255,255,0.1); 
        border-radius: 30px; /* Runde "Pillen" */
        margin-right: 10px; 
        color: #ccc; 
        white-space: nowrap; 
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cat-link.active { 
        background: var(--accent); 
        color: #000; 
        border-color: var(--accent); 
        font-weight: 700;
    }
    /* --- CINEMATIC IMAGE PANNING --- */
@keyframes slowPan {
    0%   { object-position: 0% 50%; }   /* Startet ganz am linken Rand des Fotos */
    50%  { object-position: 100% 50%; } /* Gleitet komplett zum rechten Rand */
    100% { object-position: 0% 50%; }   /* Gleitet wieder nahtlos zurück */
}
    
    /* 3. Edge-to-Edge Fullscreen Image */
    .category-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .main-img-viewport { width: 100vw; height: 100dvh; }
  .artist-main-img { 
        filter: brightness(0.9); 
        /* NEU: Wendet die Panning-Animation an */
        animation: slowPan 30s ease-in-out infinite; 
      
    }

    /* 4. Text-Overlay mit weichem Verlauf (Unten) */
/* 4. Text-Overlay mit weichem Verlauf und linkem Rahmen */
    .artist-glass-card { 
        position: absolute;
        bottom: 90px;
        left: 0; 
        width: 100%; 
        max-width: none;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%); 
        border: none; 
        backdrop-filter: none; 
        padding: 60px 5% 20px; 
        text-align: left; 
    }

    /* Wir setzen den Rahmen an die Überschrift und den Text, nicht an die Bildschirmkante */
    .artist-glass-card h3 { 
        font-size: 2rem; 
        margin-bottom: 10px; 
        text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        border-left: 3px solid var(--accent);
        padding-left: 15px; /* Abstand zwischen Linie und Text */
    }

    .style-text { 
        font-size: 0.95rem; 
        text-shadow: 0 2px 10px rgba(0,0,0,0.8); 
        border-left: 3px solid transparent; /* Platzhalter, damit der Text bündig mit der H3 bleibt */
        padding-left: 15px;
    }

    /* 5. Thumbnail Dock (Ganz unten) */
    .thumb-sidebar { 
        position: absolute; 
        bottom: 20px; 
        left: 0; 
        width: 100vw; 
        flex-direction: row; 
        overflow-x: auto; 
        transform: none; 
        padding: 0 5%; 
        gap: 12px; 
        z-index: 60; 
        justify-content: flex-start; 
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }
    .thumb-sidebar::-webkit-scrollbar { display: none; }

    .thumb { 
        width: 65px; 
        height: 65px; 
        border-radius: 12px; /* Moderne, leicht abgerundete Ecken */
        border: 2px solid rgba(255,255,255,0.2); 
        flex-shrink: 0; /* Verhindert das Stauchen der Bilder */
    }
    .thumb.active-thumb { 
        border-color: var(--accent); 
        transform: scale(1.05); 
        box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    }
}