/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Mode Colors - shadcn/tailwind inspired */
    --background: #ffffff;
    --foreground: #09090b;
    --card: #ffffff;
    --card-foreground: #09090b;
    --popover: #ffffff;
    --popover-foreground: #09090b;
    --primary: #2563eb;
    --primary-foreground: #ffffff;
    --secondary: #f4f4f5;
    --secondary-foreground: #09090b;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --accent: #f4f4f5;
    --accent-foreground: #09090b;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #e4e4e7;
    --input: #e4e4e7;
    --ring: #2563eb;
    --radius: 0.5rem;
    
    /* Additional colors */
    --text-dark: #09090b;
    --text-light: #71717a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e4e4e7;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] {
    /* Dark Mode Colors - WCAG AA compliant, shadcn/tailwind inspired */
    --background: #09090b;
    --foreground: #fafafa;
    --card: #18181b;
    --card-foreground: #fafafa;
    --popover: #18181b;
    --popover-foreground: #fafafa;
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --secondary: #27272a;
    --secondary-foreground: #fafafa;
    --muted: #27272a;
    --muted-foreground: #a1a1aa;
    --accent: #27272a;
    --accent-foreground: #fafafa;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #27272a;
    --input: #27272a;
    --ring: #3b82f6;
    
    /* Additional colors */
    --text-dark: #fafafa;
    --text-light: #a1a1aa;
    --bg-light: #18181b;
    --bg-white: #18181b;
    --border-color: #27272a;
    
    /* Dark mode shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background-color: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

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

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.2s ease;
    background-color: var(--secondary);
    color: var(--foreground);
}

.theme-toggle svg {
    color: var(--foreground) !important;
    fill: none !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.theme-toggle svg path,
.theme-toggle svg circle,
.theme-toggle svg line {
    stroke: var(--foreground) !important;
    stroke-width: 2 !important;
    fill: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.theme-toggle:hover {
    background-color: var(--accent);
    border-color: var(--primary);
}

.theme-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--foreground) !important;
    fill: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.theme-icon path,
.theme-icon circle,
.theme-icon line {
    stroke: var(--foreground) !important;
    stroke-width: 2 !important;
    fill: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.theme-icon.sun-icon {
    display: block;
}

.theme-icon.moon-icon {
    display: none;
}

[data-theme="dark"] .theme-icon.sun-icon {
    display: none;
}

[data-theme="dark"] .theme-icon.moon-icon {
    display: block;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 10rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 100%;
}

/* Responsive Hero-Bild */
@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
}

/* Fallback: Gradient-Hintergrund wenn kein Bild vorhanden */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
    z-index: 0;
}

[data-theme="dark"] .hero-background::before {
    opacity: 0.15;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: 0;
}

[data-theme="dark"] .hero-background::after {
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

/* Wenn Bild vorhanden, Overlay über Bild anzeigen */
.hero-image {
    position: relative;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    transform: translateY(4rem);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-secondary {
    background-color: var(--card);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
    background-color: var(--card);
    border-color: var(--primary);
}

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

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--muted-foreground);
    border-radius: 25px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--muted-foreground);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
    transition: background-color 0.3s ease;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

/* Services */
.services {
    background-color: var(--muted);
    transition: background-color 0.3s ease;
}

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

.service-card {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    color: var(--card-foreground);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: var(--primary-foreground);
    border: none;
}

[data-theme="dark"] .service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--muted);
    transition: transform 0.3s ease;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-card:hover .service-icon {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Fallback für Emojis, falls Bilder nicht geladen werden */
.service-icon:empty::before {
    content: '📷';
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--muted-foreground);
}

/* Wenn Bild fehlt, zeige Platzhalter */
.service-icon img[src=""],
.service-icon img:not([src]) {
    display: none;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--card-foreground);
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-card.featured .service-features li::before {
    color: white;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--card-foreground);
    transition: color 0.3s ease;
}

.portfolio-info p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: calc(var(--radius) / 2);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* About */
.about {
    background-color: var(--muted);
    transition: background-color 0.3s ease;
}

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

.about-intro {
    font-size: 1.25rem;
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.about-details {
    margin-bottom: 3rem;
}

.about-details p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.value-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* Workshops */
.workshops {
    background-color: var(--background);
    transition: background-color 0.3s ease;
}

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

.workshop-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.workshop-details {
    margin-bottom: 3rem;
}

.workshop-section {
    margin-bottom: 3rem;
}

.workshop-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.workshop-list {
    list-style: none;
    padding-left: 0;
}

.workshop-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--muted-foreground);
    position: relative;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.workshop-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    transition: color 0.3s ease;
}

.workshop-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.format-card {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.format-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.format-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.format-duration {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: calc(var(--radius) / 2);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.workshop-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    border-radius: var(--radius);
    color: var(--primary-foreground);
    transition: all 0.3s ease;
}

[data-theme="dark"] .workshop-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
    transition: color 0.3s ease;
}

.workshop-cta .btn-primary {
    background-color: var(--card);
    color: var(--primary);
}

.workshop-cta .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Contact */
.contact {
    background-color: var(--muted);
    transition: background-color 0.3s ease;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-form-wrapper {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

[data-theme="dark"] .form-message.success {
    background-color: #064e3b;
    color: #d1fae5;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

[data-theme="dark"] .form-message.error {
    background-color: #7f1d1d;
    color: #fecaca;
}

/* Footer */
.footer {
    background-color: var(--card);
    color: var(--card-foreground);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border);
    transition: all 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--card-foreground);
    transition: color 0.3s ease;
}

.footer-section p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-section ul li a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--muted-foreground);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--foreground);
}

/* Portfolio Section - Ausgeblendet */
.portfolio {
    display: none;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.impressum-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.impressum-update {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.impressum-section-block {
    margin-bottom: 2.5rem;
}

.impressum-section-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    transition: color 0.3s ease;
}

.impressum-info {
    color: var(--muted-foreground);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.impressum-info p {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.impressum-info p:last-child {
    margin-bottom: 0;
}

.impressum-info strong {
    color: var(--foreground);
    font-weight: 600;
    transition: color 0.3s ease;
}

.impressum-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.impressum-info a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.impressum-info small {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-style: italic;
    transition: color 0.3s ease;
}

.impressum-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.3s ease;
}

.impressum-back .btn {
    display: inline-block;
}

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

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

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--card);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease, background-color 0.3s ease;
        gap: 1rem;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .theme-toggle {
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshop-formats {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Hero-Bild responsive Anpassungen */
    .hero {
        min-height: 100vh;
        padding-bottom: 6rem;
    }

    .hero-content {
        transform: translateY(2rem);
        padding: 0 1rem;
    }

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

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .hero-content {
        transform: translateY(1.5rem);
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .service-icon {
        aspect-ratio: 16 / 9;
        margin-bottom: 1rem;
    }

    .impressum-content {
        padding: 1.5rem;
    }

    .impressum-title {
        font-size: 2rem;
    }

    .impressum-section-block h2 {
        font-size: 1.25rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.cookie-banner-text p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: var(--primary);
    opacity: 0.8;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-text {
    background: transparent;
    color: var(--foreground);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.btn-text:hover {
    opacity: 0.7;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cookie-settings-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: background-color 0.2s, color 0.2s;
}

.cookie-settings-close:hover {
    background: var(--muted);
    color: var(--foreground);
}

.cookie-settings-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.cookie-settings-body > p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-settings-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-settings-body a:hover {
    opacity: 0.8;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-category-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.cookie-category-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.cookie-category-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--input);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-actions button {
        width: 100%;
    }

    .cookie-settings-content {
        max-height: 95vh;
    }

    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-settings-footer button {
        width: 100%;
    }
}

/* Workshop Kalkulator Box */
.workshop-kalkulator-box {
    background: var(--card);
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(16, 185, 129, 0.3));
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .workshop-kalkulator-box {
    background: #0f172a;
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(16, 185, 129, 0.4));
    border-color: #38bdf8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .workshop-kalkulator-box {
    background: #1e293b;
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(16, 185, 129, 0.35));
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.15), 0 2px 4px -1px rgba(16, 185, 129, 0.1);
    color: #f1f5f9;
}

[data-theme="light"] .workshop-kalkulator-box h3 {
    color: #f1f5f9;
}

[data-theme="light"] .workshop-kalkulator-box p {
    color: #cbd5e1;
}

.workshop-kalkulator-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

[data-theme="dark"] .workshop-kalkulator-box:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .workshop-kalkulator-box:hover {
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2), 0 4px 6px -2px rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .workshop-kalkulator-box {
        padding: 1.5rem !important;
    }
    
    .workshop-kalkulator-box h3 {
        font-size: 1.25rem !important;
    }
}

