:root {
    --bg-dark: #070707;
    --bg-darker: #000000;
    --text-light: #f4f4f4;
    --accent: #8b0000;
    --font-head: 'Oswald', sans-serif;
    --font-text: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-text);
    overflow-x: hidden; 
}

.highlight { color: var(--accent); }

/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid #222;
}
.logo { font-family: var(--font-head); font-size: 2rem; font-weight: bold; letter-spacing: 2px; }
.tagline { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; display: none; }
@media(min-width: 768px) { .tagline { display: block; } }

/* --- WELCOME SCREEN --- */
.welcome-screen {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-image: radial-gradient(circle at center, rgba(10, 10, 10, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
}
.welcome-content h1 { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 5rem); margin-bottom: 20px; text-transform: uppercase; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.welcome-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 40px auto; color: #bbb; line-height: 1.6; }
.enter-btn { background: transparent; color: var(--text-light); border: 2px solid var(--accent); padding: 15px 40px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; transition: all 0.3s; }
.enter-btn:hover { background: var(--accent); }

/* --- SLIDER SYSTEM --- */
.slider-wrapper {
    position: relative;
    width: 100vw;
    height: 100dvh;
    background-color: var(--bg-darker);
    overflow: hidden; 
}
.slider-container { position: relative; width: 100%; height: 100%; perspective: 1000px; }
.slider-track { position: relative; width: 100%; height: 100%; }

.slide {
    position: absolute; 
    top: 0; left: 0;
    width: 100vw; height: 100%;
    display: flex; 
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0; transform: scale(0.5); pointer-events: none; z-index: 0;
}

.slide.active { opacity: 1; filter: blur(0px) grayscale(0%); transform: translateX(0) scale(1); z-index: 10; pointer-events: all; }
.slide.prev { opacity: 0.3; transform: translateX(-30vw) scale(0.7); filter: blur(10px) grayscale(80%); z-index: 5; }
.slide.next { opacity: 0.3; transform: translateX(30vw) scale(0.7); filter: blur(10px) grayscale(80%); z-index: 5; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); border: 1px solid #333;
    color: var(--text-light); font-size: 2rem; padding: 15px 20px;
    cursor: pointer; z-index: 20; transition: 0.3s;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.arrow-left { left: 10px; } 
.arrow-right { right: 10px; }

/* --- CREATIVE ARTIST LAYOUT --- */
.artist-main-img { 
    position: absolute; 
    bottom: 0; 
    height: 85dvh; 
    max-width: 100%;
    object-fit: contain; 
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
    z-index: 2;
}

/* Background Gothic Name (HELLES UPDATE!) */
.edgy-artist-name {
    position: absolute;
    top: 40%; 
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.8);
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: clamp(6rem, 18vw, 15rem);
    
    /* HIER IST DIE ANPASSUNG: Helleres Grau (#333) und kräftigerer roter Schatten */
    color: #333333; 
    text-shadow: 3px 3px 0px rgba(139, 0, 0, 0.5); 
    
    z-index: 1;
    pointer-events: none; 
    opacity: 0; 
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-glass-card {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 4px solid var(--accent);
    padding: 30px;
    width: 90%;
    max-width: 400px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.artist-glass-card h3 { font-family: var(--font-head); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 5px; }
.style-text { color: #aaa; font-size: 1.1rem; margin-bottom: 5px; }
.insta-link { color: var(--accent); text-decoration: none; font-weight: bold; display: inline-block; margin-bottom: 20px; }

.book-btn {
    width: 100%;
    background: var(--text-light); color: var(--bg-dark);
    padding: 15px; border: none; font-family: var(--font-head);
    font-size: 1.1rem; cursor: pointer; transition: 0.2s;
    text-transform: uppercase; font-weight: bold;
}
.book-btn:hover { background: #ccc; transform: translateY(-3px); }

.sample-gallery-vertical { 
    position: absolute;
    top: 15%;
    right: 5%;
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 10;
}
.sample-gallery-vertical img { 
    width: clamp(70px, 10vw, 100px); 
    height: clamp(70px, 10vw, 100px); 
    object-fit: cover; 
    border: 2px solid #333; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s, z-index 0s;
    cursor: zoom-in;
}

.slide.active .sample-gallery-vertical img:hover {
    transform: scale(2.5) translateX(-20px) !important; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.9) !important;
    border-color: var(--accent);
    z-index: 50 !important;
}

/* --- FLYING ANIMATIONS --- */
.slide .artist-glass-card, 
.slide .sample-gallery-vertical img { opacity: 0; transform: translateY(40px); transition: all 0.5s ease; }

.slide.active .edgy-artist-name { opacity: 1; transform: translate(-50%, -50%) rotate(-10deg) scale(1); transition-delay: 0.1s; }
.slide.active .artist-glass-card { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.slide.active .sample-gallery-vertical img:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.slide.active .sample-gallery-vertical img:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.slide.active .sample-gallery-vertical img:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* --- RESPONSIVE MOBILE FIXES (GRÖSSERES BILD UPDATE!) --- */
@media (max-width: 768px) {
    .artist-main-img { 
        height: 80dvh; /* Massiv vergrößert für Mobile */
        max-width: none; /* Hebt Limitierung auf, damit es überlappen darf */
        right: -15%; /* Schiebt das größere Bild leicht nach rechts, damit die Info-Karte nutzbar bleibt */
    } 
    .sample-gallery-vertical { top: 10%; right: 2%; gap: 10px; }
    .artist-glass-card { bottom: 5%; left: 5%; padding: 20px; }
    .slider-arrow { padding: 10px 15px; font-size: 1.5rem; }
}

/* --- FOOTER --- */
.main-footer { background: #050505; border-top: 1px solid #222; padding: 60px 20px 20px 20px; }
.footer-container { display: flex; justify-content: space-around; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 30px; }
.footer-section h3 { font-family: var(--font-head); color: var(--text-light); margin-bottom: 15px; font-size: 1.2rem; }
.footer-section p { color: #888; font-size: 0.9rem; line-height: 1.6; }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-links a { color: #888; text-decoration: none; transition: 0.2s; }
.social-links a:hover { color: var(--accent); padding-left: 5px; }
.whabes-credit { color: var(--accent); font-family: var(--font-head); letter-spacing: 1px; }
.footer-bottom { text-align: center; color: #555; font-size: 0.8rem; margin-top: 40px; border-top: 1px solid #111; padding-top: 20px; }

/* --- MODAL --- */
.modal { display: none; position: fixed; z-index: 200; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
.modal-content { background: #111; margin: 10vh auto; padding: 40px; width: 90%; max-width: 500px; border: 1px solid #333; position: relative; }
.close-btn { position: absolute; right: 20px; top: 15px; font-size: 2rem; cursor: pointer; color: #888; }
.close-btn:hover { color: white; }
.modal h2 { font-family: var(--font-head); margin-bottom: 5px; }
#selected-artist-text { color: var(--accent); margin-bottom: 20px; font-weight: bold; }
input, select, textarea { width: 100%; padding: 12px; margin-bottom: 15px; background: #1a1a1a; border: 1px solid #333; color: white; font-family: var(--font-text); }
.confirm-btn { width: 100%; background: var(--accent); color: white; padding: 15px; border: none; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; }
/* --- ICON STYLING --- */
.social-links i {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px; /* Hält alle Icons auf der gleichen Breite für ein sauberes Raster */
    text-align: center;
}

.insta-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}