/* =====================================================
   PARS REISEN LIMOUSINEN SERVICE - MASTER STYLESHEET
   Bereinigt und organisiert für bessere Wartbarkeit
   ===================================================== */

/* ===== 1. CSS CUSTOM PROPERTIES (CSS VARIABLEN) ===== */
:root {
    /* Hauptfarben */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    
    /* Gradienten */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    
    /* Glassmorphism Effekte */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Layout & Spacing */
    --container-max-width: 1400px;
    --section-padding: 5rem 0;
    --element-padding: 2rem;
    
    /* Typografie */
    --font-primary: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    /* Übergänge */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== 2. RESET & GRUNDLEGENDE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== 3. LAYOUT CONTAINER ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== 4. HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bestehende Animation */
@keyframes arrow-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* Neue Diamant-Animation */
@keyframes diamond-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-bounce);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 80%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px auto;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent-color);
}

.mobile-menu-toggle.active {
    background: rgba(245, 158, 11, 0.2);
    transform: rotate(180deg);
}

/* ===== 5. HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a8edea 50%, #fed6e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
    animation: slideInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
}

/* ===== 6. GEMEINSAME STYLES ===== */
/* Section Title */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Animationen */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== 7. SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-dark);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.services .section-title {
    position: relative;
    z-index: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-bounce);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* ===== 8. GALLERY SECTION ===== */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-description {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #64748b;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0px);
}

.gallery-item.filtering {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(5px);
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Image Container */
.gallery-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(99, 102, 241, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-image:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Gallery Action Buttons */
.gallery-actions {
    display: flex;
    gap: 1rem;
    align-self: flex-end;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-image:hover .gallery-actions {
    transform: translateY(0);
}

.gallery-zoom-btn,
.gallery-book-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-zoom-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.gallery-book-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.gallery-book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-image:hover .category-badge {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-modal.show {
    opacity: 1;
}

.gallery-modal-content {
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.show .gallery-modal-content {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    transform: scale(1.1);
}

/* Modal Image Container */
.gallery-modal-image-container {
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-nav-btn.prev {
    left: 2rem;
}

.gallery-nav-btn.next {
    right: 2rem;
}

/* Modal Info Section */
.gallery-modal-info {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-modal-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-modal-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Features Tags */
.gallery-modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tag::before {
    content: '✓';
    font-weight: bold;
}

/* Book Button */
.gallery-modal-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* Thumbnails */
.gallery-modal-thumbnails {
    display: flex;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: #f8fafc;
    overflow-x: auto;
    border-top: 1px solid #e2e8f0;
}

.gallery-thumbnail {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 3px solid transparent;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    opacity: 1;
    transform: scale(1.1);
    border-color: #667eea;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 9. PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.pricing .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.price-grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Diese Zeile hinzufügen */
    position: relative;
    z-index: 2;
}

.price-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
        display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

.price-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
      flex-grow: 1; /* Features-Liste wächst und füllt verfügbaren Platz */
}

.price-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-details-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto; /* Button wird automatisch nach unten geschoben */
    margin-bottom: 0; /* Konsistenter unterer Abstand */
}

.price-details-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== 10. MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.modal-close:hover {
    color: #333;
    transform: scale(1.1);
}

.modal-title {
    padding: 2rem 2rem 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid #f1f5f9;
    margin: 0;
}

#modalContent {
    padding: 2rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.price-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.price-table tbody tr:nth-child(even) {
    background: rgba(99, 102, 241, 0.05);
}

.price-table tr:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.01);
}

.price-highlight {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== 11. CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Date Input Styling */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23667eea" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== 12. FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ===== 13. UTILITY CLASSES ===== */
.animate {
    animation: fadeInUp 0.8s ease-out;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== 14. RESPONSIVE DESIGN ===== */

/* Desktop Large */
@media (min-width: 1600px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .price-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --container-max-width: 95%;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .price-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .gallery-modal-info {
        padding: 2rem;
    }
}

/* Update für Ihr bestehendes Mobile CSS */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
        
        /* NEUE Eigenschaften für Scroll-Fix */
        max-height: calc(100vh - 100%);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        /* Stelle sicher dass die maximale Höhe korrekt ist */
        max-height: 80vh;
    }
    
    .nav-menu a {
        color: var(--secondary-color);
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        text-align: center;
        /* Touch-freundlichere Mindesthöhe */
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Verhindert Body-Scroll wenn Menü offen ist */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Dezente Scrollbar für das Menü */
    .nav-menu::-webkit-scrollbar {
        width: 3px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        padding: 1rem;
    }

    .service-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gallery-nav-btn.prev {
        left: 1rem;
    }

    .gallery-nav-btn.next {
        right: 1rem;
    }

    .gallery-modal-info {
        padding: 1.5rem;
    }

    .gallery-modal-info h3 {
        font-size: 1.5rem;
    }

    .gallery-modal-thumbnails {
        padding: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-card,
    .price-card,
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    #modalContent {
        padding: 1rem;
    }
    
    .price-table {
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-image {
        border-radius: 16px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-actions {
        gap: 0.5rem;
    }
    
    .gallery-zoom-btn,
    .gallery-book-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== 15. ACCESSIBILITY & FOCUS STYLES ===== */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus,
.filter-btn:focus,
.gallery-zoom-btn:focus,
.gallery-book-btn:focus,
.gallery-modal-close:focus,
.gallery-nav-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== 16. PERFORMANCE OPTIMIZATIONS ===== */
.service-icon,
.price-card,
.service-card,
.cta-button,
.submit-btn {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-card:hover,
.price-card:hover,
.cta-button:hover,
.submit-btn:hover {
    will-change: transform;
}

/* ===== 17. REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== 18. HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #000;
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(0, 0, 0, 0.3);
    }
    
    .service-card,
    .price-card,
    .contact-info,
    .contact-form {
        border: 2px solid #000;
        background: #fff;
    }
    
    .gallery-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .filter-btn {
        border-color: #000;
    }
    
    .gallery-image {
        border: 2px solid #000;
    }
}

/* ===== 19. DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #e2e8f0;
    }
    
    .services {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
    
    .contact {
        background: linear-gradient(135deg, #334155 0%, #475569 100%);
    }
    
    .contact-info,
    .contact-form {
        background: #1e293b;
        color: #e2e8f0;
    }
    
    .contact-item {
        background: #334155;
    }
    
    .contact-item:hover {
        background: #475569;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #334155;
        color: #e2e8f0;
        border-color: #475569;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        background: #475569;
        border-color: var(--primary-color);
    }
    
    .modal-content {
        background: #1e293b;
        color: #e2e8f0;
    }
    
    .price-table {
        background: #1e293b;
    }
    
    .price-table th {
        background: var(--gradient-primary);
    }
    
    .price-table tbody tr:nth-child(even) {
        background: rgba(99, 102, 241, 0.1);
    }
    
    .price-table tr:hover {
        background: #334155;
    }
}

/* ===== 20. TOUCH OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .price-card:hover {
        transform: none;
    }
    
    .service-card:active,
    .price-card:active {
        transform: scale(0.98);
    }
    
    .cta-button:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    .cta-button:active,
    .submit-btn:active {
        transform: scale(0.95);
    }
}

/* ===== 21. PRINT STYLES ===== */
@media print {
    .header,
    .mobile-menu-toggle,
    .gallery-modal,
    .modal {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .service-card,
    .price-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* CSS für die Service Links */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.service-link:active {
    transform: translateY(-1px) scale(1.02);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsives Design für die Links */
@media (max-width: 768px) {
    .service-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

/* Focus-Styles für Barrierefreiheit */
.service-link:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}


  /* === MOBILE GALLERY FILTER FIX === */
        
        /* 1. Mobile Filter Buttons - schöner und funktional */
        @media (max-width: 768px) {
            .gallery-filters {
                display: flex;
                overflow-x: auto;
                gap: 0.5rem;
                padding: 1rem;
                margin-bottom: 2rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .gallery-filters::-webkit-scrollbar {
                display: none;
            }
            
            .filter-btn {
                background: linear-gradient(135deg, #f8f9fa, #e9ecef);
                border: 2px solid #dee2e6;
                color: #495057;
                padding: 0.75rem 1.25rem;
                border-radius: 25px;
                font-size: 0.9rem;
                font-weight: 600;
                white-space: nowrap;
                min-width: fit-content;
                flex-shrink: 0;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .filter-btn.active {
                background: linear-gradient(135deg, #06b6d4, #0891b2);
                border-color: #0891b2;
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
            }
            
            .filter-btn:hover:not(.active) {
                background: linear-gradient(135deg, #e9ecef, #dee2e6);
                transform: translateY(-1px);
                box-shadow: 0 3px 12px rgba(0,0,0,0.15);
            }
            
            /* Filter Animation Indicator */
            
        }
        
        /* 2. Mobile Gallery Grid - 2 Spalten Layout */
        @media (max-width: 768px) {
            .gallery-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                padding: 0 1rem;
                visibility: visible !important;
                opacity: 1 !important;
            }
            
            .gallery-item {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 100%;
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
            }
            
            .gallery-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .gallery-image {
                position: relative;
                width: 100%;
                height: 150px;
                overflow: hidden;
            }
            
            .gallery-image img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover;
                display: block !important;
                visibility: visible !important;
                transition: transform 0.3s ease;
            }
            
            .gallery-item:hover .gallery-image img {
                transform: scale(1.05);
            }
            
            /* Category Badge - schöner */
            .category-badge {
                position: absolute;
                top: 0.5rem;
                left: 0.5rem;
                background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(8, 145, 178, 0.9));
                color: white;
                padding: 0.3rem 0.8rem;
                border-radius: 20px;
                font-size: 0.7rem;
                font-weight: 600;
                backdrop-filter: blur(10px);
                z-index: 2;
            }
            
            /* Gallery Overlay - immer sichtbar auf Mobile */
            .gallery-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0,0,0,0.8));
                padding: 1rem 0.75rem 0.75rem;
                color: white;
                opacity: 1;
                transition: none;
            }
            
            .gallery-info h3 {
                font-size: 1rem;
                font-weight: 600;
                margin: 0 0 0.3rem 0;
                line-height: 1.2;
            }
            
            .gallery-info p {
                font-size: 0.8rem;
                opacity: 0.9;
                margin: 0;
                line-height: 1.3;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            /* Gallery Actions - Touch-friendly */
            .gallery-actions {
                display: flex;
                gap: 0.5rem;
                margin-top: 0.75rem;
                justify-content: center;
            }
            
            .gallery-zoom-btn,
            .gallery-book-btn {
                padding: 0.75rem;
                min-width: 44px;
                min-height: 44px;
                border-radius: 50%;
                border: none;
                color: white;
                font-size: 1.1rem;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .gallery-zoom-btn {
                background: linear-gradient(135deg, #06b6d4, #0891b2);
            }
            
            .gallery-book-btn {
                background: linear-gradient(135deg, #10b981, #059669);
            }
            
            .gallery-zoom-btn:active,
            .gallery-book-btn:active {
                transform: scale(0.95);
            }
        }
        
        /* 3. Sehr kleine Screens - 1 Spalte */
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
            }
            
            .gallery-image {
                height: 200px;
            }
            
            .gallery-filters {
                flex-direction: row;
                justify-content: flex-start;
                padding: 1rem 0.5rem;
            }
            
            .filter-btn {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
        }
        
        /* 4. Filter Animation für Mobile */
        @media (max-width: 768px) {
            .gallery-item.filtering {
                opacity: 0;
                transform: scale(0.8);
                transition: all 0.3s ease;
            }
            
            .gallery-item.hidden {
                display: none !important;
            }
            
            .gallery-item.show-animation {
                animation: mobileSlideIn 0.5s ease-out forwards;
            }
            
            @keyframes mobileSlideIn {
                from {
                    opacity: 0;
                    transform: translateY(20px) scale(0.9);
                }
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }
        }
        
        /* 5. Loading States */
        @media (max-width: 768px) {
            .gallery-image img.loading {
                opacity: 0.3;
                background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
                background-size: 200% 100%;
                animation: loading 1.5s infinite;
            }
            
            @keyframes loading {
                0% { background-position: 200% 0; }
                100% { background-position: -200% 0; }
            }
        }
        
        /* 6. Section Titel für Mobile */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .gallery-description {
                font-size: 1rem;
                text-align: center;
                margin-bottom: 2rem;
                padding: 0 1rem;
                line-height: 1.5;
            }
        }