:root {
    --primary-color: #FF4444;
    --primary-dark: #CC0000;
    --secondary-color: #FFB800;
    --accent-color: #FF7A00;
    --bg-dark: #0A0A0A;
    --bg-medium: #1A1A1A;
    --bg-light: #2A2A2A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-dark: #666666;
    --gradient-fire: linear-gradient(135deg, #FF4444 0%, #FF7A00 50%, #FFB800 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    border-bottom-color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(255, 68, 68, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.social-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.social-nav a {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.social-nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: clamp(60px, 12vw, 120px);
    letter-spacing: 8px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.subtitle {
    display: block;
    font-size: clamp(24px, 5vw, 48px);
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-top: 10px;
}

.hero-text {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--text-light);
    font-weight: 800;
}

.event-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.event-badge {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

/* KEINE Hover, Active oder Focus States! */
.event-badge:hover,
.event-badge:active,
.event-badge:focus {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--primary-color);
    transform: none;
    box-shadow: none;
}

.hero-text-bottom {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-gray);
    margin: 30px 0;
    line-height: 1.8;
}

.hero-cta-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-gray);
    margin: 30px 0;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-fire);
    color: var(--text-light);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    min-height: 44px; /* iOS minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(-45deg);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Band Section */
.band-section {
    background: var(--bg-medium);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.band-member {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.band-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.band-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.member-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.member-instrument {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.member-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-dark);
}

.gallery-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 68, 68, 0.3);
}

.instagram-card:hover {
    border-color: #E4405F;
    box-shadow: 0 20px 50px rgba(228, 64, 95, 0.3);
}

.facebook-card:hover {
    border-color: #1877F2;
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.3);
}

.social-icon {
    margin-bottom: 25px;
}

.social-icon svg {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon svg {
    transform: scale(1.1);
}

.instagram-card:hover .social-icon svg {
    color: #E4405F;
}

.facebook-card:hover .social-icon svg {
    color: #1877F2;
}

.social-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Termine Section */
.termine-section {
    background: var(--bg-medium);
}

.termine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.termin-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.termin-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.termin-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.termin-date {
    background: var(--gradient-fire);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.termin-date .day {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--text-light);
}

.termin-date .month {
    display: block;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 5px;
}

.termin-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.termin-info .location {
    color: var(--text-gray);
    font-size: 14px;
}

/* Kontakt Section */
.kontakt-section {
    background: var(--bg-dark);
}

.kontakt-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.kontakt-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.kontakt-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kontakt-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.kontakt-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.kontakt-item a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.kontakt-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: var(--bg-dark);
    border: 2px solid var(--bg-medium);
    color: var(--text-light);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.submit-button {
    background: var(--gradient-fire);
    color: var(--text-light);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
}

/* Downloads Section */
.downloads-section {
    background: var(--bg-medium);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.download-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.download-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.download-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.download-icon {
    margin-bottom: 25px;
}

.download-icon svg {
    color: var(--primary-color);
}

.download-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.download-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-button {
    display: inline-block;
    background: var(--gradient-fire);
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 15px 0;
    }

    .logo img {
        height: 40px;
    }

    .footer-logo img {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        transition: left 0.3s ease;
        border-right: 2px solid var(--primary-color);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .social-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .band-grid,
    .termine-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-content {
        grid-template-columns: 1fr;
    }

    .kontakt-form-container {
        padding: 30px 20px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .event-types {
        gap: 10px;
    }

    .event-badge {
        padding: 8px 15px;
        font-size: 12px;
    }

    .termin-card {
        flex-direction: column;
        text-align: center;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Delays */
.band-member:nth-child(1) { transition-delay: 0.1s; }
.band-member:nth-child(2) { transition-delay: 0.2s; }
.band-member:nth-child(3) { transition-delay: 0.3s; }
.band-member:nth-child(4) { transition-delay: 0.4s; }
.band-member:nth-child(5) { transition-delay: 0.5s; }
.band-member:nth-child(6) { transition-delay: 0.6s; }

.termin-card:nth-child(odd) { transition-delay: 0.1s; }
.termin-card:nth-child(even) { transition-delay: 0.2s; }

.download-card:nth-child(1) { transition-delay: 0.1s; }
.download-card:nth-child(2) { transition-delay: 0.2s; }

/* Mobile-Specific Optimizations */
@media (max-width: 768px) {
    /* Better touch targets for all interactive elements */
    .nav-links a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .menu-toggle {
        padding: 15px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Larger text for better mobile readability */
    .hero-text,
    .hero-text-bottom,
    .hero-cta-text {
        font-size: 18px;
        line-height: 1.9;
    }
    
    /* Better spacing for mobile cards */
    .band-member {
        padding: 35px 25px;
    }
    
    .termin-card {
        padding: 25px;
        gap: 20px;
    }
    
    /* Optimize social cards for mobile */
    .social-card {
        padding: 40px 30px;
    }
    
    /* Better form usability on mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
        min-height: 44px;
    }
    
    .submit-button {
        padding: 16px 40px;
        font-size: 16px;
        min-height: 50px;
        width: 100%; /* Full width on mobile */
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%; /* Full width on mobile */
        max-width: 300px;
    }
}

/* Extra small devices optimization */
@media (max-width: 375px) {
    .title-line {
        font-size: 56px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .event-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .termin-date .day {
        font-size: 32px;
    }
    
    .termin-date .month {
        font-size: 12px;
    }
}


/* Event Types Intro */
.event-types-intro {
    color: var(--text-light);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 20px 0;
}

/* Centered Kontakt Section */
.kontakt-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-info-center {
    text-align: center;
    width: 100%;
}

.kontakt-info-center h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.kontakt-info-center > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.kontakt-info-center .kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    align-items: center;
}

.kontakt-info-center .kontakt-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.kontakt-info-center .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    min-height: calc(100vh - 200px);
    padding: 140px 20px 80px;
    background: var(--bg-dark);
}

.legal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.legal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-content h4 {
    font-weight: 700;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 20px 60px;
    }
    
    .legal-content {
        padding: 0 10px;
    }
}

/* Band Member Images */
.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    transition: all 0.4s ease;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.band-member:hover .member-image {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

/* Mobile Adjustments for Images */
@media (max-width: 768px) {
    .member-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .member-image {
        width: 120px;
        height: 120px;
    }
}

/* Group Photo in Gallery */
.group-photo {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.group-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.group-photo img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 68, 68, 0.4);
}

.group-photo-caption {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .group-photo {
        margin-bottom: 30px;
    }
    
    .group-photo-caption {
        font-size: 16px;
        margin-top: 15px;
    }
}

/* ========================================
   NEUE STYLES FÜR FINALE VERSION
   ======================================== */

/* Gruppenbild im Hero */
.group-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.group-intro img {
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
    margin-bottom: 25px;
}

.group-intro-text {
    font-size: 22px;
    color: var(--yellow);
    font-weight: bold;
    font-style: italic;
    line-height: 1.6;
}

/* Band Members - GROSSE FOTOS */
.member-image-large {
    width: 320px;
    height: 320px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.member-image-large:hover {
    transform: scale(1.05);
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

.member-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band-member {
    text-align: center;
}

.band-member h3 {
    margin-top: 15px;
    font-size: 24px;
}

.band-member .member-instrument {
    color: var(--yellow);
    font-weight: 600;
    font-size: 16px;
}

/* Social Share */
.social-share-section {
    padding: 60px 0;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
}

.social-share {
    text-align: center;
}

.social-share h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Download Button - Disabled */
.download-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    .member-image-large {
        width: 260px;
        height: 260px;
    }
    
    .group-intro-text {
        font-size: 18px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .member-image-large {
        width: 180px;
        height: 180px;
    }
}



/* Download Cards - ALLE GLEICH GROSS */
.download-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-card .download-icon {
    flex-shrink: 0;
}

.download-card h3 {
    flex-shrink: 0;
}

.download-card p {
    flex-grow: 1;
}

.download-card .download-button {
    flex-shrink: 0;
    margin-top: auto;
}

/* ========================================
   TERMINE ALS GRID - KOMPAKT!
   ======================================== */

.termine-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Termine kompakter */
.termin-card {
    padding: 20px 15px;
}

.termin-date {
    margin-bottom: 12px;
}

.termin-date .day {
    font-size: 32px;
    margin-bottom: 2px;
}

.termin-date .month {
    font-size: 14px;
}

.termin-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.termin-info .location {
    font-size: 13px;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .termine-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .termine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .termine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .termine-grid {
        grid-template-columns: 1fr;
    }
    
    /* Termine horizontal auf Mobile - Datum links, Text rechts */
    .termin-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }
    
    .termin-date {
        flex-shrink: 0;
        width: 60px;
        margin-bottom: 0;
        margin-right: 0;
    }
    
    .termin-date .day {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .termin-date .month {
        font-size: 12px;
    }
    
    .termin-info {
        flex-grow: 1;
        text-align: left;
    }
    
    .termin-info h3 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .termin-info .location {
        font-size: 13px;
    }
}

/* ========================================
   DOWNLOADS WIRKLICH GLEICH GROSS!
   ======================================== */

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-card {
    min-height: 350px !important;
    max-height: 350px !important;
    height: 350px !important;
    display: flex;
    flex-direction: column;
}

.download-card .download-icon {
    flex: 0 0 auto;
    margin-bottom: 20px;
}

.download-card h3 {
    flex: 0 0 auto;
    margin-bottom: 15px;
}

.download-card p {
    flex: 1 1 auto;
    margin-bottom: 20px;
}

.download-card .download-button {
    flex: 0 0 auto;
    margin-top: auto;
}

@media (max-width: 968px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
    }
}


/* ========================================
   GRUPPENBILD - ZENTRIERT IN DER MITTE
   ======================================== */

.group-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.group-intro img {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
    margin: 0 auto 25px;
    display: block;
}


/* ========================================
   NÄCHSTER AUFTRITT - STARK HERVORGEHOBEN!
   ======================================== */

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.next-event-simple {
    text-align: center;
    margin: 30px auto 40px;
    padding: 28px 35px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 184, 0, 0.15) 100%);
    border: 3px solid var(--primary);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.4), 0 0 20px rgba(255, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.next-event-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.5), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.next-event-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
}

.next-event-info {
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.next-event-info strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
}

@media (max-width: 768px) {
    .next-event-simple {
        margin: 20px auto 30px;
        padding: 22px 28px;
    }
    
    .next-event-label {
        font-size: 18px;
    }
    
    .next-event-info {
        font-size: 18px;
    }
    
    .next-event-info strong {
        font-size: 20px;
    }
}


/* ========================================
   INLINE LINK IM TEXT
   ======================================== */

.inline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}


/* ========================================
   BAND MEMBER LINKS (clickable to ueber-uns)
   ======================================== */

.band-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.band-member-link:hover {
    transform: translateY(-5px);
}

.band-member-link:hover .member-image-large {
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
}

/* Smooth scroll to band members */
html {
    scroll-behavior: smooth;
}

