/* Grundlegende Einstellungen */
:root {
    --primary-color: #1a1a1a; /* Fast Schwarz */
    --secondary-color: #666666; /* Dunkelgrau */
    --bg-color: #ffffff;
    --light-bg: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typografie */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navigation */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; position: fixed; width: 100%;
    background: rgba(255, 255, 255, 0.95); z-index: 1000;
    border-bottom: 1px solid #eee;
}
.logo img { height: 40px; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--secondary-color); }

/* Hero Section */
.hero {
    height: 90vh;
    background: url('hero.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
/* Dunkler Overlay über Hero Bild für bessere Lesbarkeit */
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}
.hero-content {
    position: relative; z-index: 2; text-align: center; color: white;
}
.hero h1 { font-size: 4rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; font-weight: 300; letter-spacing: 2px; }

/* Sections Allgemein */
.section { padding: 100px 5%; }
.grey-bg { background-color: var(--light-bg); }
.container { max-width: 1200px; margin: 0 auto; }
.text-block { max-width: 700px; margin: 0 auto; text-align: center; font-size: 1.1rem; }
.text-block p { margin-bottom: 20px; }

/* Künstler Grid */
.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; margin-top: 50px;
}
.card {
    background: white; border: 1px solid #eee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card-image-placeholder {
    height: 250px; background-color: #e0e0e0; width: 100%;
    /* Hier später echte Bilder: background: url('künstler1.jpg')... */
}
.card-content { padding: 30px; }
.card h3 { margin-bottom: 5px; font-size: 1.5rem; }
.subtitle { color: var(--secondary-color); font-size: 0.85rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.read-more {
    display: inline-block; margin-top: 20px; font-size: 0.9rem;
    border-bottom: 1px solid var(--primary-color); padding-bottom: 2px;
}

/* Footer */
footer { background: var(--primary-color); color: white; padding: 50px 5% 20px; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.footer-col a { color: #aaa; font-size: 0.9rem; line-height: 2; }
.footer-col a:hover { color: white; }
.copyright { text-align: center; font-size: 0.8rem; color: #555; border-top: 1px solid #333; padding-top: 20px; }

/* Animation Classes (Scroll Reveal) */
.scroll-element { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.scroll-element.scrolled { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* Newsletter Modal */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.5);
    align-items: center; justify-content: center;
}
.modal-content {
    background-color: white; padding: 50px; width: 90%; max-width: 500px;
    position: relative; text-align: center;
}
.close-btn {
    position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer;
}
.form-group { display: flex; gap: 10px; }
input {
    width: 100%; padding: 12px; margin: 10px 0;
    border: 1px solid #ddd; font-family: var(--font-body);
}
.checkbox-group { font-size: 0.8rem; text-align: left; margin: 15px 0; display: flex; align-items: start; gap: 10px;}
.btn-black {
    background: var(--primary-color); color: white; padding: 12px 30px;
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
    width: 100%; margin-top: 10px; transition: 0.3s;
}
.btn-black:hover { background: #333; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Mobile Menu hier vereinfacht ausgeblendet */
    .form-group { flex-direction: column; gap: 0; }
}