:root {
    --primary-color: #d4af37;
    --dark-bg: #111;
    --light-text: #ffffff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* Navigation & Logo */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    backdrop-filter: blur(5px); /* Moderner Glass-Effekt */
}

.brand-logo {
    height: 50px; /* Passt die Größe des Logos an */
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Fullscreen Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Ersetze 'hero-bg.jpg' durch dein hochauflösendes Bandfoto */
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dunkle Ebene über dem Bild für bessere Text-Lesbarkeit */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Schriftgröße passt sich dem Screen an */
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    background: #fff;
}

/* Container für Inhalt */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

/* Styles für die Unterseiten */
.subpage .container {
    max-width: 800px; /* Schmaler für bessere Lesbarkeit von langen Texten */
}

.legal-content h3 {
    margin-top: 30px;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

/* Navbar-Fix für Unterseiten */
.subpage .navbar {
    background: #000; /* Auf Unterseiten immer vollflächig schwarz */
}

/* Audio Sektion */
.bg-dark-gray {
    background-color: #222;
    color: #fff;
}

.text-white { color: #fff; }

.audio-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.audio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.audio-item span {
    font-weight: 700;
    margin-right: 20px;
}

audio {
    height: 35px;
    filter: sepia(20%) saturate(70%) grayscale(100%) contrast(90%) invert(10%); /* Passt Player optisch an */
}

/* Galerie Grid Anpassung für Links */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block; /* Wichtig, da <a> standardmäßig inline ist */
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    background: #000; /* Falls Bilder laden, sieht man schwarz */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.8;
}

/* Customizing SimpleLightbox (optional) */
.sl-overlay {
    background: #000 !important;
}
.sl-wrapper .sl-navigation button {
    color: var(--primary-color) !important;
}
/* Mobile Fix für Audio */
@media (max-width: 600px) {
    .audio-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    audio { width: 100%; }
}