* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #181818;
    background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

header {
    background-color: #000;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

header a:hover {
    color: #999;
}

main {
    margin: 0;
    padding: 0;
}

.section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.band {
    text-align: center;
    padding: 3rem 0;
}

.band-logo {
    max-width: 60%;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0;
    transform: scale(0.8);
    animation: logoAppear 1.5s ease forwards, logoFlicker 2s ease-in-out 1.5s infinite;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoFlicker {
    0% {
        opacity: 1;
    }
    5% {
        opacity: 0.2;
    }
    10% {
        opacity: 1;
    }
    15% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

h1 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

h2 {
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

.tagline {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-button {
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    color: #999;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.album {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.album:hover {
    transform: translateY(-5px);
}

.album h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.album-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.album-link {
    display: block;
    text-decoration: none;
}

.album-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05);
}

.concert-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.concert {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.concert-date {
    font-size: 0.9rem;
    color: #999;
}

.concert-info h3 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.concert-info p {
    color: #999;
    font-size: 0.9rem;
}

.concert-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.concert-link:hover {
    color: #999;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.bio-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bio-content p {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.band-members {
    margin-top: 3rem;
}

.band-members h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.band-members ul {
    list-style: none;
}

.band-members li {
    margin-bottom: 0.5rem;
    color: #999;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.cookie-button:hover {
    background: #fff;
    color: #000;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background: #181818;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.privacy-content {
    margin-top: 2rem;
}

.privacy-content h3 {
    margin: 2rem 0 1rem;
    color: #fff;
}

.privacy-content h4 {
    margin: 1.5rem 0 1rem;
    color: #fff;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    header {
        gap: 1.5rem;
    }

    .concert {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .concert-date {
        margin-bottom: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 3rem;
    }

    .band-logo {
        max-width: 75%;
    }

    .album-cover {
        width: 150px;
        height: 150px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    main {
        margin-top: 120px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .band-logo {
        max-width: 85%;
    }

    .album-cover {
        width: 120px;
        height: 120px;
    }
}

/* Skip Link für Screenreader */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Visuell versteckte Elemente für Screenreader */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Fokus-Styles für bessere Sichtbarkeit */
a:focus,
button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Verbesserte Kontraste */
.social-link,
.concert-link,
.footer-links a {
    color: #fff;
}

.social-link:hover,
.concert-link:hover,
.footer-links a:hover {
    color: #ccc;
}

/* Verbesserte Lesbarkeit */
.bio-content p {
    max-width: 70ch;
    margin: 0 auto 1.5rem;
}

/* Verbesserte Tastatur-Navigation */
.modal:focus-within {
    outline: none;
}

.modal-content:focus {
    outline: none;
}

/* Verbesserte Touch-Targets */
.social-link,
.concert-link,
.cookie-button,
.close-modal {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* E-Mail-Links */
.email-protect a {
    color: #fff;
    text-decoration: none;
}

.email-protect a:hover {
    color: #ccc;
}

/* Sprachumschalter */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #fff;
    color: #000;
} 