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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo Section */
.logo-section {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.logo-section h1 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    padding: 10px;
}

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

.logo-img {
    max-height: 80px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.1));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.15));
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%),
        url('img/hero.jpg') center/cover no-repeat;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #333;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.9);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    color: #000;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.cta-button:hover::before {
    left: 100%;
}

/* Section Styling */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(odd) {
    background: #ffffff;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.section h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    letter-spacing: -1px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.about-text p {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p:nth-child(1) { animation-delay: 0.1s; }
.about-text p:nth-child(2) { animation-delay: 0.2s; }
.about-text p:nth-child(3) { animation-delay: 0.3s; }
.about-text p:nth-child(4) { animation-delay: 0.4s; }
.about-text p:nth-child(5) { animation-delay: 0.5s; }

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

.about-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

.band-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.band-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.band-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.band-image:hover .band-photo {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    color: #1a1a1a;
}

.video-section h2 {
    color: #1a1a1a;
}

.video-section h2::after {
    background: linear-gradient(90deg, #333, #666);
}

.video-intro {
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #4a4a4a;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* YouTube Consent */
.youtube-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    z-index: 10;
}

.consent-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
    color: #333;
}

.consent-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.consent-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.consent-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.consent-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.consent-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.consent-accept {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.consent-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.consent-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.consent-link:hover {
    background: #f0f0f0;
    color: #333;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 50px 0;
    text-align: left;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    background: white;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Captcha */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.captcha-refresh {
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #555;
}

/* Privacy Checkbox */
.privacy-group {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.privacy-group input[type="checkbox"] {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    accent-color: #333;
    margin-top: 2px;
}

.privacy-group label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1a1a1a;
    cursor: pointer;
    margin-bottom: 0;
}

.privacy-group label:first-of-type {
    flex-shrink: 0;
}

.privacy-group label:last-of-type {
    flex: 1;
}

.privacy-link {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #000;
}

/* Error Messages */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page Content (Impressum/Datenschutz) */
.page-content {
    padding: 80px 0 120px;
    background: #ffffff;
}

.page-content .container {
    max-width: 1000px;
}

.page-content h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
    position: relative;
}

.page-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
    border-radius: 2px;
}

.page-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #333;
}

.page-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.back-link:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 60px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo-section {
        padding: 40px 0 30px;
    }

    .logo-img {
        max-height: 60px;
        max-width: 250px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        margin-bottom: 50px;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .contact-form-container {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .page-content {
        padding: 60px 0 80px;
    }

    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* YouTube Consent Mobile */
    .consent-content {
        padding: 25px;
        max-width: 400px;
    }

    .consent-content h3 {
        font-size: 1.3rem;
    }

    .consent-content p {
        font-size: 0.9rem;
    }

    .consent-buttons {
        margin-top: 25px;
    }

    .consent-btn {
        min-width: 180px;
        font-size: 0.95rem;
    }

    .privacy-group label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        max-height: 50px;
        max-width: 200px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .about-content {
        gap: 40px;
    }

    .contact-form-container {
        padding: 20px;
        margin: 30px 0;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}