/* Import der Schriftart */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Essential CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #00BCD4, #008C9E);
    --primary-color: #00BCD4;
    --primary-dark: #008C9E;
    --accent-color: #4DECFB;

    --background-darkest: #050505;
    --background-darker: #080808;
    --background-dark: #0A0A0A;
    --background-surface: #121212;
    --background-surface-light: #161616;
    --background-card: #1A1A1A;
    --background-card-light: #1E1E1E;
    --background-tech: #0F0F0F;
    --background-section-1: #0D0D0D;
    --background-section-2: #141414;
    --background-section-3: #181818;
    --background-section-4: #1C1C1C;
    --background-gallery: rgba(20, 20, 20, 0.8);

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 50px rgba(0, 188, 212, 0.3);
    --tile-pattern: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 20px);
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container and Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

/* Fade-in animations - content visible by default */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

.fade-in-delay-4 {
    transition-delay: 0.8s;
}

.fade-in-delay-5 {
    transition-delay: 1s;
}

#about {
  scroll-margin-top: 70px; /* Höhe der Navbar */
}

#repertoire {
  scroll-margin-top: 80px; /* Höhe der Navbar */
}

#ausstattung {
  scroll-margin-top: 100px; /* Höhe der Navbar */
}

#contact {
  scroll-margin-top: 40px; /* Höhe der Navbar */
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* QUEMIX Link Styling */
.quemix-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quemix-link:hover {
    color: var(--accent-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.logo img {
    height: 20px;
    margin-right: 10px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:not(.contact-btn):hover::after {
    width: 100%;
}

.contact-btn {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

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

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

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

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

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('BILDER/LOGO/Hero.jpg') center/cover;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Logo Styles */
.hero-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 188, 212, 0.3));
    transition: transform 0.3s ease;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 3rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes mouse-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* About Section */
.about-section {
    background: var(--background-section-1);
    background-image: var(--tile-pattern);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image-container {
    position: sticky;
    top: 6rem;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.key-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.fact-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
}

.fact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.fact-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fact-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Genres Section */
.genres-section {
    background: var(--background-section-2);
    padding: 6rem 0;
    text-align: center;
}

.genre-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.genre-tag {
    background: var(--background-card);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.genre-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: 1;
}

.genre-tag span {
    position: relative;
    z-index: 2;
}

.genre-tag:hover::before {
    left: 0;
}

.genre-tag:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.genre-note {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.genre-note-text {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

/* Ausstattung Section */
.ausstattung-section {
    background: var(--background-section-3);
    background-image: var(--tile-pattern);
    padding: 6rem 0;
}

.ausstattung-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ausstattung-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Referenzen Section */
.referenzen-section {
    background: var(--background-section-1);
    background-image: var(--tile-pattern);
    padding: 6rem 0;
}

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

.testimonial {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Service Notice */
.service-notice {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    margin: 4rem auto 2rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.15);
}

.service-notice h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-notice p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.provisional-notice {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.service-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Social CTA */
.social-cta {
    text-align: center;
    margin-top: 3rem;
}

.social-cta-content {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.15);
}

.social-cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.social-cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    min-height: 44px;
}

.social-button:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.social-button.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-button.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
}

.social-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-button.maps {
    background: linear-gradient(135deg, #4285F4, #1A73E8);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--background-section-2);
    padding: 6rem 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    text-align: center;
}

.contact-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 4rem auto;
}

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

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-card);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    min-width: 20px;
}

.contact-item a,
.contact-item span {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-surface);
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 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(0, 188, 212, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 2px;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}



.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 2rem 0 3rem 0;
}

.form-submit {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* Footer */
.footer {
    background: var(--background-darker);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 25px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a,
.footer-section ul li span {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* iOS-Autozoom verhindern: Eingabefelder auf >=16px */
.form-group input,
.form-group textarea,
.form-checkbox label,
select {
    font-size: 16px;
}

/* Nur auf Touch-Geräten erzwingen, Desktop bleibt unverändert */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group textarea,
    .form-checkbox label,
    select {
        font-size: 16px;
    }
}

/* iOS-Safari Absicherung */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group textarea,
    .form-checkbox label,
    select {
        font-size: 16px;
    }
}

/* Touch device optimizations */
.touch-device .social-button:hover {
    transform: none;
}

.touch-device .social-button:active {
    transform: scale(0.95);
}

/* Better focus states for accessibility */
.social-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.contact-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image-container {
        position: static;
        order: -1;
    }

    .about-image {
        max-width: 350px;
    }

    .about-text-container {
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 900px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-logo img {
        max-width: 450px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .genre-cloud {
        gap: 0.5rem;
    }

    .genre-tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .key-facts {
        gap: 1rem;
    }

    .fact-item {
        padding: 1.5rem;
    }

    .about-image {
        max-width: 280px;
    }

    .service-notice {
        padding: 2rem;
        margin: 3rem auto 1.5rem auto;
    }

    .service-notice h3 {
        font-size: 1.5rem;
    }

    .service-notice p {
        font-size: 1rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .social-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* Contact form mobile optimization */
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-image {
        max-width: 250px;
    }

    .contact-form {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }

    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1rem;
        font-size: 16px;
        min-height: 48px;
        box-sizing: border-box;
    }

    .contact-form textarea {
        height: 150px; /* Longer on mobile */
        resize: vertical;
    }

    .contact-form button {
        width: 100%;
        padding: 1rem;
        min-height: 56px;
        font-size: 1.1rem;
    }

    /* Checkbox mobile - standard design */
    .form-checkbox {
        margin: 1.5rem 0;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .form-checkbox input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        margin-top: 2px;
    }

    .form-checkbox label {
        font-size: 0.9rem !important;
        line-height: 1.4;
        color: var(--text-secondary);
    }

    /* reCAPTCHA mobile optimization */
    .g-recaptcha {
        margin: 2rem 0 4rem 0; /* Mehr margin nach unten */
        transform-origin: 0 0;
    }

    /* Footer mobile optimization */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand img {
        height: 30px;
        margin-bottom: 1rem;
    }

    /* Mobile menu styles */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide overlay since menu takes full screen */
    .mobile-menu-overlay {
        display: none !important;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        z-index: 1000;
        padding: 0;
        transition: right 0.3s ease, opacity 0.3s ease;
        overflow-y: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        padding-top: 10vh; /* Noch tiefer für bessere Daumen-Bedienung */
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links.show {
        opacity: 1;
    }

    .nav-links li {
        margin-bottom: 0.5rem;
        width: 280px;
        max-width: 90%;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        border-radius: 15px;
        text-align: center;
        min-height: 56px;
        line-height: 1.4;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--background-card);
        transform: translateY(-2px);
    }

    .contact-btn {
        background: var(--primary-gradient) !important;
        color: white !important;
        border: none !important;
        margin-top: 1rem;
        border-radius: 25px !important;
        box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    }

    .contact-btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 35px rgba(0, 188, 212, 0.6) !important;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important;
        padding: 1rem;
        border-radius: 10px;
        min-height: 48px;
    }

    .form-submit {
        min-height: 48px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

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

    .section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-logo img {
        max-width: 350px;
    }

    .testimonial blockquote {
        font-size: 1.1rem;
    }

    /* Contact image smaller on mobile */
    .contact-image {
        max-width: 200px;
    }

    /* Contact form full width on very small screens */
    .contact-form {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }

    .contact-form textarea {
        height: 180px; /* Even longer on very small screens */
    }

    /* Checkbox very small screens - standard design */
    .form-checkbox input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
    }

    .form-checkbox label {
        font-size: 0.85rem !important;
    }

    /* Social buttons even more touch-friendly */
    .social-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        min-height: 56px;
    }

    /* reCAPTCHA scaling for small screens */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        margin: 2rem 0 5rem 0; /* Noch mehr margin nach unten */
    }

    /* Footer social links in 2x2 grid on very small screens */
  

    /* Form inputs larger for touch */
    .contact-form input,
    .contact-form textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }

    .contact-form button {
        min-height: 56px;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    /* Hide scroll indicator only on very small screens */
    .scroll-indicator {
        bottom: 6rem;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    /* Mobile navigation even better on small screens */
    .nav-links li {
        width: 260px;
        margin: 1px;
    }

    .nav-links {
        padding-top: 5vh; /* Auch auf kleinen Screens noch tiefer */
    }
}

/* Hide scroll indicator only on extremely small screens */
@media (max-width: 360px) {
    .scroll-indicator {
        display: none;
    }
}

/* Hide mobile toggle on desktop */
@media (min-width: 901px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }
}