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

/* Seiten-Layout */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
	font-size:100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hintergrundbild */
body {
    background: url('images/bg_mix1.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: sticky;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.logo {
    font-size: 2.5em;
    color: white;
    text-decoration: none;
}

.menu-toggle {
    font-size: 1.5em;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Standardmäßig ausgeblendet */
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Menü */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-links.active {
        display: flex;
    }
}

/* Hauptinhalt */
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 5px;
    max-width: 1000px;
    width: 100%;
    margin-top: 10px;
}

/* Boxen im Grid */
.box {
    background: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 10px;
}

/* impress */
.impress {
    margin: 5px 0;
    padding: 5px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
	text-align: left;
}



/* Musik-Links */
.music-links, .social-links {
    margin: 5px 0;
    padding: 5px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
}

.music-links a, .social-links a {
    color: white;
    text-decoration: none;
    padding: 5px 5px;
    border: 1px solid white;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
}

/* Social Icons Styling */
.social-icon i {
    margin-right: 8px;
    font-size: 1.2em;
	color: white;
}

.music-links a:hover, .social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
	
	
	
/* Hintergrundbild Impressum */
.Impressum {
    background: url('images/impressum.png') no-repeat center center fixed;
    background-size: cover;
	
	
}
