/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
header {
    padding: 2rem 5%;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3% 5%;
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
}

/* News Banner */
.news-banner {
    padding: 2rem 0 3rem;
    text-align: center;
}

.news-slider {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.news-item {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
}

.news-item.active {
    opacity: 1;
}

.news-item p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.news-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: #666;
}

.dot.active {
    background-color: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 2px;
}

/* Artists Section */
.artists {
    padding: 4rem 0;
}

.artists h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-card {
    border: 1px solid #333;
    padding: 4rem 2rem;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: border-color 0.3s;
}

.artist-card:hover {
    border-color: #ffffff;
}

.artist-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Blog Section */
.blog-link {
    padding: 4rem 0;
    text-align: center;
}

.text-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.6;
}

/* Blog Page Styles */
.blog-container {
    padding: 4rem 0;
}

.blog-container h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 4rem;
}

.blog-post {
    border-bottom: 1px solid #333;
    padding: 3rem 0;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-date {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.blog-post h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.blog-post p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
}

/* Artist Page Styles */
.artist-container {
    padding: 4rem 0;
}

.artist-header {
    margin-bottom: 4rem;
}

.artist-header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.artist-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background-color: #111;
    border: 1px solid #333;
    margin-bottom: 3rem;
}

.artist-bio {
    margin-bottom: 4rem;
}

.artist-bio h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.artist-bio p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 800px;
}

.releases {
    margin-bottom: 4rem;
}

.releases h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.release-list {
    list-style: none;
}

.release-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    font-weight: 300;
    opacity: 0.8;
}

.release-list li:last-child {
    border-bottom: none;
}

.social-links {
    margin-top: 3rem;
}

.social-links h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 2rem;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding: 2rem 5%;
    text-align: center;
    margin-top: auto;
}

footer p {
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Releases Page Styles */
.releases-page {
    padding: 4rem 0;
}

.releases-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #ffffff;
}

.filter-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Releases Grid - Schachbrettmuster */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.release-card {
    aspect-ratio: 1;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

/* Schachbrett-Effekt: Jede zweite Karte hat dunkleren Hintergrund */
.release-card:nth-child(odd) {
    background-color: #000000;
}

.release-card:nth-child(even) {
    background-color: #0a0a0a;
}

.release-card:hover {
    transform: scale(1.02);
    z-index: 10;
    border-color: #ffffff;
}

.release-image {
    width: 100%;
    height: 70%;
    background-color: #111;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-info h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.release-artist {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.release-year {
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Release Detail Page Styles */
.release-detail {
    padding: 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    display: inline-block;
    margin-bottom: 3rem;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 1;
}

.release-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.release-cover {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.cover-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #111;
    border: 1px solid #333;
}

.release-cover img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #333;
}

.release-details h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.release-meta {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.meta-item {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.meta-label {
    opacity: 0.5;
    margin-right: 0.5rem;
}

.release-description,
.tracklist,
.release-credits,
.release-links,
.embedded-player {
    margin-bottom: 3rem;
}

.release-description h2,
.tracklist h2,
.release-credits h2,
.release-links h2,
.embedded-player h2 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.release-description p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.tracks {
    list-style: none;
    counter-reset: track-counter;
}

.tracks li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    font-weight: 300;
    gap: 1rem;
}

.tracks li:last-child {
    border-bottom: none;
}

.track-number {
    opacity: 0.4;
    font-size: 0.85rem;
    min-width: 2rem;
}

.track-title {
    flex: 1;
}

.track-duration {
    opacity: 0.5;
    font-size: 0.9rem;
}

.release-credits p {
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.link-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stream-btn {
    background-color: transparent;
    border: 1px solid #333;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.stream-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.embedded-player iframe {
    width: 100%;
    border: 1px solid #333;
}

/* Shop Page Styles */
.shop-page {
    padding: 4rem 0;
}

.shop-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.shop-description {
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 700px;
}

.kofi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.kofi-item {
    border: 1px solid #333;
    min-height: 400px;
    overflow: hidden;
}

.kofi-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.kofi-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    padding: 2rem;
    text-align: center;
}

.kofi-placeholder p {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 0.85rem;
    opacity: 0.5;
}

.kofi-profile {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.kofi-profile p {
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.kofi-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.kofi-link:hover {
    opacity: 0.6;
}

/* About Page Styles */
.about-page {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 4rem;
}

.about-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-contact {
    text-align: center;
    padding: 3rem 0;
}

.about-contact p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.about-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.about-contact a:hover {
    opacity: 1;
}

/* Live Page Styles */
.live-page {
    padding: 4rem 0;
}

.live-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 4rem;
}

/* Video Section */
.video-section {
    margin-bottom: 6rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #111;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.video-info p {
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.video-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: inline-block;
}

.video-link:hover {
    opacity: 1;
}

/* Shows Section */
.shows-section {
    margin-bottom: 6rem;
}

.shows-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.shows-list {
    border-top: 1px solid #333;
}

.show-item {
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.show-date {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.show-details {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.show-lineup {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Booking Section */
.booking-section {
    text-align: center;
    padding: 4rem 0;
}

.booking-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.booking-text {
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: 1px solid #333;
    transition: all 0.3s;
}

.email-link:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .artist-header h1 {
        font-size: 2rem;
    }

    .blog-container h1 {
        font-size: 2rem;
    }

    .releases-page h1 {
        font-size: 2rem;
    }

    .live-page h1 {
        font-size: 2rem;
    }

    .shop-page h1 {
        font-size: 2rem;
    }

    .release-details h1 {
        font-size: 2rem;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .kofi-grid {
        grid-template-columns: 1fr;
    }

    .release-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .release-cover {
        position: relative;
        top: 0;
    }

    .link-buttons {
        flex-direction: column;
    }

    .stream-btn {
        text-align: center;
    }

    .email-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 5%;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}