/* ===== RESET & BASIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farben */
    --black: #000;
    --red: #F00;
    --white: #FFF;
    /* Schriftarten */
    --font-heading: 'Bangers', cursive;
    --font-body: 'Odibee Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/Webseite-Hero-Background.webp') center/cover fixed no-repeat;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    font-family: var(--font-body);
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--white); }
a.active { color: var(--red); }

/* ===== LAYOUT ===== */
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 4rem 0; min-height: 100vh; background-color: transparent; }

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0;
}

.logo-container {
    flex-shrink: 0;
}
.logo { height: 60px; width: auto; }
.menu-icon { height: 30px; width: auto; display: none; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1rem;
}
.mobile-nav-toggle { display: none; }

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover { color: var(--red); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem 0;
    background-color: transparent;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.hero-cover {
    max-width: 70vh;
    width: 90%;
    height: auto;
    border: 3px solid var(--red);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}
.hero-text p:not(.vinyl-note) {
    max-width: 600px;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.8;
}
.hero-text p.vinyl-note {
    max-width: 600px;
    font-size: 0.825rem;
    margin-top: 0.125rem;
    margin-bottom: 0;
    line-height: 1;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
}

/* REZENSIONEN - Slider mit Pfeilen */
.reviews-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    padding: 1rem 0;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--red);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav:hover {
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.review-prev {
    left: -60px;
}

.review-next {
    right: -60px;
}

.reviews-slider {
    width: 80%;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}

.review-item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.review-item.active {
    opacity: 1;
}

.reviews-slider a {
    display: contents;
    cursor: pointer;
}
.review-text {
    font-family: var(--font-body);
    font-size: 1.95rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: normal;
    white-space: normal;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.review-rating {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--red);
    font-weight: bold;
}

.review-source {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--red);
    font-weight: bold;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.section-heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent, var(--red));
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid var(--red);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
}
.btn:hover { background-color: transparent; color: var(--red); }

.pdf-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.discography-list {
    text-align: center;
    margin: 1rem auto 2rem;
}
.discography-list p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

/* ===== CARDS & GRIDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.card:hover { background-color: rgba(255, 0, 0, 0.1); border-color: var(--red); transform: translateY(-5px); }
.member-card { overflow: hidden; }
.member-card:hover { background-color: transparent; border-color: rgba(255, 0, 0, 0.3); transform: none; }
.member-card:hover .member-photo { transform: scale(1.05); transition: transform 0.5s ease; }
.card h3 { margin-bottom: 1rem; color: var(--red); }

.card-grid.members-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.5rem; }
.member-card { min-height: 320px; padding: 0.5rem; }
.member-photo {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 0, 0, 0.5);
}
.video-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 0, 0, 0.1);
    border: 2px dashed rgba(255, 0, 0, 0.5);
    margin-bottom: 1rem;
    color: rgba(255, 0, 0, 0.7);
}

/* ===== VIDEOS ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.video-card { background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 0, 0, 0.3); padding: 1rem; text-align: center; }
.video-card video { width: 100%; max-height: 300px; background: var(--black); margin-bottom: 1rem; }
.video-card h3 { color: var(--red); margin-bottom: 0; }

/* ===== FOOTER ===== */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--red);
    padding: 3rem 0 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-section { text-align: center; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; }
.footer-section h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--white); }
.address { font-family: var(--font-body); font-style: normal; line-height: 1.8; }
.address a { color: var(--red); }
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; justify-content: center; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.social-icon:hover { background-color: var(--red); color: var(--white); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.footer-links a { color: var(--red); font-family: var(--font-body); }
.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
}
.copyright p { font-size: 0.9rem; margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .hero-cover { max-width: 300px; }
    .review-item { min-width: 250px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: rgba(0,0,0,0.95); padding: 1rem; gap: 1rem; }
    .nav-links.active { display: flex; }
    .mobile-nav-toggle { display: block; background: none; border: none; cursor: pointer; padding: 0.5rem; }
    .menu-icon { display: block; }
    nav { padding: 0 1rem; }
    .logo { height: 50px; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-cover { max-width: 250px; }
    .review-item { min-width: 200px; }
    .card-grid, .video-grid { grid-template-columns: 1fr; }
    .social-links { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }
    .social-icon { width: 35px; height: 35px; font-size: 0.8rem; }
}
