/* Global Styles */
:root {
    --primary-color: #ff0000;
    --secondary-color: #ffffff;
    --dark-color: #000000;
    --light-color: #f0f0f0;
    --accent-color: #ffcc00;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--secondary-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
    color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    max-width: 800px;
    margin-bottom: 50px;
    text-align: center;
}

.band-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.member {
    text-align: center;
    width: 200px;
}

.member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 15px;
}

.member h3 {
    font-size: 1.2rem;
}

.member p {
    font-style: italic;
}

/* Music Section */
.music {
    padding: 100px 0;
    background-color: #111;
}

.music-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.album-player {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(280px, 1fr);
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    padding: 35px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(0, 0, 0, 0.8));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.album-cover-with-player {
    position: relative;
    width: 300px;
    height: 300px;
}

.album-cover-with-player::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 0, 0, 0.35), transparent 60%);
    filter: blur(8px);
    z-index: -1;
}

.album-cover-with-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid rgba(255, 0, 0, 0.8);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.audio-player {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 8px 10px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.now-playing {
    text-align: center;
    margin-bottom: 4px;
}

.now-playing h4 {
    font-family: 'Black Ops One', cursive;
    font-size: 0.75rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    letter-spacing: 0.04em;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--secondary-color);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.play-toggle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.progress-track {
    position: relative;
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    border-radius: 999px;
    transition: width 0.1s linear;
}

audio {
    display: none;
}

.track-list {
    width: 100%;
    max-width: 520px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.track-list h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.track-list p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--light-color);
}

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

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    gap: 10px;
}

.track-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.track-number {
    color: var(--primary-color);
    font-weight: bold;
}

.track-name {
    flex: 1;
    margin-left: 15px;
    color: var(--secondary-color);
}

.track-duration {
    color: var(--light-color);
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Tour Section */
.tour {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.day {
    font-size: 2rem;
    font-weight: bold;
}

.month {
    font-size: 1rem;
}

.venue {
    flex: 1;
    margin-left: 30px;
}

.venue h3 {
    margin-bottom: 5px;
}

.venue p {
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    max-width: 400px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.imprint-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.imprint-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-banner__content p {
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner__link {
    background: none;
    border: none;
    padding: 6px 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: var(--accent-color);
}

.cookie-banner__button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.cookie-banner__button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.cookie-modal.is-visible {
    display: block;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.cookie-modal__panel {
    position: relative;
    max-width: 520px;
    margin: 12vh auto 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    color: var(--secondary-color);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-modal__header h3 {
    margin: 0;
    color: var(--primary-color);
}

.cookie-modal__close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--secondary-color);
    border-radius: 999px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.cookie-modal__close:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-modal__body p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
}

.gallery-modal.is-visible {
    display: block;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.gallery-modal__panel {
    position: relative;
    width: min(90vw, 900px);
    margin: 8vh auto 0;
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.gallery-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--secondary-color);
    border-radius: 999px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.gallery-modal__close:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.gallery-modal__image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
}

.gallery-modal__caption {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.no-scroll {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .tour-date {
        flex-direction: column;
        align-items: flex-start;
    }

    .date {
        margin-bottom: 15px;
    }

    .venue {
        margin-left: 0;
    }

    .contact-content {
        flex-direction: column;
    }

    .album-player {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .album-cover-with-player {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .track-list {
        max-width: none;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-modal__panel {
        width: calc(100% - 40px);
        margin: 10vh auto 0;
    }

    .gallery-modal__panel {
        width: calc(100% - 32px);
        margin: 10vh auto 0;
    }
}
