/* CMP Consent Banner Styling (Global) */
#cookie-consent-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background-color: rgba(0, 0, 0, 0.95); 
    color: white; 
    padding: 1rem 2rem; 
    display: flex; /* Standardmäßig sichtbar */
    justify-content: space-between; 
    align-items: center; 
    z-index: 2000;
}

/* Utility, um das Banner zu verstecken (wird per JS gesteuert) */\n.hidden { display: none !important; }
#cookie-consent-banner[style*="display: none"] {
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
}

/* Styling für die Buttons */
#cookie-consent-banner button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
#reject-consent {
    background-color: #6a0000;
}
#accept-all {
    background-color: #c00000;
}

/* Grundlegende Stile für alle Seiten */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    background-image: linear-gradient(to bottom, #1a1a1a, #000000);
    background-attachment: fixed;
    /* Wichtig: Padding hinzufügen, damit der Footer nicht hinter dem Banner verschwindet */
    padding-bottom: 80px; 
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: padding 0.3s;
}

header.scrolled {
    padding: 0.7rem 5%;
}

/* CMP Consent Banner Styling (Global) */
#cookie-consent-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background-color: rgba(0, 0, 0, 0.95); 
    color: white; 
    padding: 1rem 2rem; 
    display: flex; /* Standardmäßig sichtbar */
    justify-content: space-between; 
    align-items: center; 
    z-index: 2000;
}

/* Utility, um das Banner zu verstecken (wird per JS gesteuert) */\n.hidden { display: none !important; }
#cookie-consent-banner[style*="display: none"] {
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
}

/* Container und Footer Anpassungen, damit sie nicht vom fixierten Banner verdeckt werden */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
    top: 0;
}

footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    /* Reduzieren des Bottom Margins für den Footer */
    padding-bottom: calc(2rem + 60px); /* 2rem (alt) + Höhe des Banners */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: padding 0.3s;
   }

header.scrolled {
    padding: 0.7rem 5%;
    }

.logo {
    font-family: 'Metal Mania', cursive;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #f0f0f0;
    text-shadow: 0 0 10px rgba(200, 0, 0, 0.3);
    position: relative;
}

.logo span {
    color: #c00000;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #c00000;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #c00000;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
    top: 0;
}

.push-down {
    margin-top: 100px; /* Größe entsprechend dem Header anpassen */
}

section {
    margin-bottom: 5rem;
}

h1, h2, h3 {
    font-family: 'Metal Mania', cursive;
    margin-bottom: 1.5rem;
    }

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #f0f0f0;
    position: relative;
    margin-bottom: 2rem;
}

h1::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: #c00000;
    bottom: -10px;
    left: 0;
}

h2 {
    font-size: 2.2rem;
    color: #d0d0d0;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #f0f0f0;
}

.text-content {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Album Cover */
.album-cover {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    text-align: center;
}

.album-cover img {
    max-width: 100%;
    transition: transform 0.3s;
    border: 2px solid #333;
}

.album-cover img:hover {
    transform: scale(1.02);
    border-color: #c00000;
}

.album-cover::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Bandmitglieder */
.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background-color: rgba(20, 20, 20, 0.7);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid rgba(200, 0, 0, 0.2);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 0, 0, 0.3);
}

.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #333;
}

/* Tour Termine */
.tour-dates {
    margin-top: 2rem;
}

.date-card {
    display: flex;
    justify-content: space-between;
    background-color: rgba(20, 20, 20, 0.7);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border-left: 4px solid #c00000;
}

.date-info {
    flex: 1;
}

.date-location {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Footer */
footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #d0d0d0;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #c00000;
}


/* Seitenspezifische Stile für Impressum */
.impressum-section {
    margin-bottom: 3rem;
}

.impressum-section h2 {
    font-size: 2.2rem;
    color: #d0d0d0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.impressum-section p {
    margin-bottom: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
        font-size: 1.5rem;
        cursor: pointer;
        background: #444;
        color: white;
        padding: 0.5rem;
    }

    nav {
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
	   text-align: center;
    }

    nav.active ul {
        display: block;
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
	text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .date-card {
        flex-direction: column;
    }

    .date-info {
        margin-bottom: 1rem;
    }

    .header-container {
        position: relative;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/*Change*/
html {
    scroll-behavior: smooth;
}


