/* Basis Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Space Grotesk', Arial, sans-serif;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.glitch-logo {
    width: 300px;
    animation: glitch 1s infinite;
    filter: drop-shadow(-2px 0 #00ffff) drop-shadow(2px 0 #ff00ff);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Logo Container */
.logo-container {
    text-align: center;
    padding: 10px 0;
}

.logo-container img {
    max-width: 250px;
    height: auto;
}

/* Navbar */
.navbar {
    position: relative;
    width: 100%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* Navbar Logo */
.navbar-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 150px;
    opacity: 1;
}

.navbar-logo img {
    width: 100%;
    height: auto;
}

/* Banner / Hero */
.banner {
    width: 100%;
    height: 300px;
    background: url('sigma.png') center/cover no-repeat;
}

.hero {
    width: 100%;
    height: 50px;
    background: url('https://source.unsplash.com/1600x900/?music,studio') center/cover no-repeat;
}

/* Content */
.content {
    max-width: 800px;
    margin: 60px auto;
    text-align: left;
    padding: 0 20px;
    line-height: 1.6;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.release-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.release-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Künstlerprofile */
.artist-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #111;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.artist-profile:hover {
    background-color: #1a1a1a;
}

/* Release Links */
.release-details a {
    color: #1DB954; /* Spotify Grün */
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none; /* Entfernt die Unterstreichung */
    transition: color 0.3s ease;
}

.release-details a:hover {
    color: #1ED760; /* Hellgrün beim Hover */
    text-decoration: underline;
}

/* Releases */
.releases-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.release-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    background-color: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Kontakt */
.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #111;
    padding: 40px 20px;
    border-radius: 12px;
}

.kontakt-info h3,
.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

.social-link.instagram:hover { color: #E1306C; }
.social-link.spotify:hover { color: #1DB954; }
.social-link.youtube:hover { color: #FF0000; }
.social-link.tiktok:hover { color: #69C9D0; }

/* Footer */
.footer {
    background-color: #000;
    color: #777;
    padding: 20px 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .navbar-logo {
        display: none;
    }
  
    .artist-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .artist-info {
        text-align: center;
    }

    .release-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
.artist-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.artist-img:hover {
    transform: scale(1.05);
}
