/* CSS Variablen für einfaches Anpassen */
:root {
    --bg-light: #fafafa;
    --text-dark: #333333;
    --accent-color: #8b9dc3;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Helles Hauptdesign (Landingpage, Events, About) */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 20px;
    text-align: center;
}


.logo {
    font-size: 1.4rem;
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--text-dark);
}

/* Header & Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(250, 250, 250, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}


/* Hero Slideshow Styling */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-slides, .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Geschwindigkeit des Überblendens */
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dunkelt die Bilder dezent ab */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem; /* Noch einen Tick größer zum Testen */
    font-weight: bold;
    color: #ffffff;
    /* Ein extremer, rundum laufender Schatten, um den Unterschied sofort zu sehen */
    text-shadow: 3px 3px 15px #000000, -2px -2px 15px #000000; 
    margin-top: 15px;
}
/* About Section */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.about-text {
    text-align: left;
}

/* --- GALERIEN DESIGNS --- */

.gallery-section {
    padding: 80px 20px;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.grid-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0; /* Für den Lazy Load Fade-In */
    transition: opacity 0.8s ease-in-out;
}

.grid-container img.loaded {
    opacity: 1;
}

/* LARP Design: Dunkel, erdig, moody */
.larp-design {
    background-color: #1c1c1b;
    color: #d4c8b8;
}

/* Musical Design: Elegantes, subtiles Glitzern */
.musical-design {
    /* Ein sanfter, glamouröser Farbverlauf */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

/* Subtiler CSS-Glitter Effekt im Hintergrund */
.musical-design::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(200,200,200,0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.musical-design h2, .musical-design p, .musical-design .grid-container {
    position: relative;
    z-index: 1;
}

/* Footer */
.main-footer {
    padding: 40px 20px;
    border-top: 1px solid #eaeaea;
}

.footer-links a {
    margin: 0 15px;
    color: var(--text-dark);
    text-decoration: none;
}

/* --- BUTTON STYLING FÜR DIE UNTERSEITEN --- */

.btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid currentColor; /* Übernimmt automatisch die Textfarbe */
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    opacity: 0.6;
    transform: translateY(-2px); /* Hebt den Button beim Hovern leicht an */
}

/* --- RECHTLICHE SEITEN (Impressum & Datenschutz) --- */

.legal-section {
    /* Oben mehr Padding (120px), damit der Text nicht unter den fixierten Header rutscht */
    padding: 120px 20px 80px; 
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-align: left; /* Wichtig für lange Texte */
}

.legal-content {
    max-width: 800px; /* Begrenzt die Textbreite für optimale Lesbarkeit */
    margin: 0 auto;   /* Zentriert den Textblock in der Mitte des Bildschirms */
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center; /* Die Hauptüberschrift darf zentriert bleiben */
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea; /* Ein dezenter Trennstrich unter Zwischenüberschriften */
    padding-bottom: 10px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8; /* Etwas mehr Zeilenabstand macht es luftiger */
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.legal-content a:hover {
    text-decoration: underline;
}
/* --- ABOUT PAGE (Unterseite) --- */

.about-page {
    padding: 140px 20px 80px; /* Großzügiger Abstand nach oben wegen des Headers */
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.about-page-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Leichter Schatten für mehr Tiefe */
    object-fit: cover;
}

.about-page-content {
    text-align: left;
}

.about-page-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.about-page-content .lead-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-page-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-contact-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    text-align: center;
}

.about-contact-box p {
    margin-bottom: 20px;
    font-weight: bold;
}

.btn-dark {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--text-dark);
    opacity: 1; /* Überschreibt die generelle .btn opacity */
}

/* Responsive Design für kleinere Bildschirme (Tablets & Smartphones) */
@media (max-width: 768px) {
    .about-page-container {
        grid-template-columns: 1fr; /* Stacked Layout für Mobile */
        gap: 40px;
    }
    
    .about-page-content h1 {
        font-size: 2.2rem;
    }
}