/* ========== Mobile Overflow Fix ========== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* ========== MOBILE OVERFLOW FIX ========== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* ========== MOBILE OVERFLOW FIX ========== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* =======================================================
   Lokale Google Font: Inter (DSGVO-konform)
   ======================================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter/inter-v20-latin-300.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter/inter-v20-latin-500.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter/inter-v20-latin-600.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter/inter-v20-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* =======================================================
   Basis-Styles
   ======================================================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

:root {
  --deep-navy: #0A1628;
  --warm-terracotta: #D4806A;
  --soft-cream: #F5F1E8;
  --accent-gold: #C9A66B;
  --text-dark: #1a1a1a;
  --text-light: #6B7280;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--soft-cream);
}



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

        :root {
            --deep-navy: #0A1628;
            --warm-terracotta: #D4806A;
            --soft-cream: #F5F1E8;
            --accent-gold: #C9A66B;
            --text-dark: #1a1a1a;
            --text-light: #6B7280;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--soft-cream);
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(245, 241, 232, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(245, 241, 232, 0.95);
            box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-svg {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--deep-navy);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

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

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

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

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

        .nav-cta {
            background: var(--warm-terracotta);
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--warm-terracotta);
        }

        .nav-cta:hover {
            background: #c06f5a;
            border-color: #c06f5a;
            transform: translateY(-1px);
        }

        .nav-cta::after {
            display: none;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--soft-cream) 1px, transparent 1px),
                linear-gradient(90deg, var(--soft-cream) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-accent {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4.2rem;
            color: white;
            margin-bottom: 1.8rem;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .hero-text .highlight {
            color: var(--warm-terracotta);
            position: relative;
            display: inline-block;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: rgba(245, 241, 232, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 580px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--warm-terracotta);
            color: white;
            padding: 1.1rem 2.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-primary:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--soft-cream);
            padding: 1.1rem 2.8rem;
            border: 2px solid rgba(245, 241, 232, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--soft-cream);
            background: rgba(245, 241, 232, 0.05);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            border-left: 2px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(245, 241, 232, 0.6);
        }

        .hero-visual {
            position: relative;
        }

        .booth-mockup {
            background: linear-gradient(145deg, rgba(245, 241, 232, 0.08) 0%, rgba(245, 241, 232, 0.02) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }



        .mockup-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .mockup-icon {
            margin-bottom: 1.5rem;
        }

        .mockup-icon img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feature-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .badge {
            background: rgba(245, 241, 232, 0.15);
            color: var(--soft-cream);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(245, 241, 232, 0.2);
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .experience-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--deep-navy);
            color: white;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            font-weight: 600;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-img-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .about-img-card:hover {
            transform: translateY(-4px);
        }

        .about-img-card i {
            font-size: 3rem;
            color: var(--warm-terracotta);
            margin-bottom: 1rem;
        }

        .about-img-card h4 {
            font-size: 1.1rem;
            color: var(--deep-navy);
            margin-bottom: 0.5rem;
        }

        .about-img-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Features Section */
        .features {
            padding: 8rem 3rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-label {
            color: var(--warm-terracotta);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 6rem;
            color: var(--deep-navy);
            margin-bottom: 2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--soft-cream);
            padding: 2.5rem;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: rgba(212, 128, 106, 0.2);
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
        }

        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
        }

        .feature-icon-wrap i {
            font-size: 1.8rem;
            color: var(--warm-terracotta);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Price Calculator */
        .calculator {
            padding: 8rem 3rem;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .calculator::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        .calculator-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .calculator-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .calculator-header p {
            font-size: 1.15rem;
            color: rgba(245, 241, 232, 0.7);
        }

        .calculator-container {
            background: rgba(245, 241, 232, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
        }

        .calc-section {
            margin-bottom: 2.5rem;
        }

        .calc-section label {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .calc-section input[type="number"] {
            width: 100%;
            background: rgba(245, 241, 232, 0.1);
            border: 2px solid rgba(245, 241, 232, 0.2);
            border-radius: 12px;
            padding: 1.2rem;
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .calc-section input[type="number"]:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(245, 241, 232, 0.15);
        }

        .extras-grid {
            display: grid;
            gap: 1rem;
        }

        .extra-option {
			display: flex;
			align-items: center; /* sorgt für vertikale Zentrierung */
			flex-direction: row; /* Checkbox und Text nebeneinander */
			gap: 1rem; /* Abstand zwischen Checkbox und Text */
		}

		.extra-option input[type="checkbox"] {
			margin: 0; /* entfernt eventuell störenden oberen Abstand */
			align-self: center;
		}

		/* ==== Fix: Checkbox neben Infotext im Preisrechner ==== */
		.extras-grid .extra-option {
		  display: flex !important;
		  flex-direction: row !important;
		  align-items: center !important;
		  gap: 0.75rem !important;
		}

		.extras-grid .extra-option > input[type="checkbox"] {
		  display: inline-flex !important;
		  align-self: center !important;
		  margin: 0 !important;
		  margin-right: 0.75rem !important;
		  flex: 0 0 auto !important;
		  width: 20px !important;
		  height: 20px !important;
		}

		.extras-grid .extra-option .extra-info {
		  flex: 1 1 auto !important;
		  min-width: 0 !important; /* verhindert Zeilenumbruch bei langen Texten */
		}

        .extra-option:hover {
            background: rgba(245, 241, 232, 0.12);
            border-color: rgba(245, 241, 232, 0.25);
        }

        .extra-option input[type="checkbox"] {
            width: 22px;
            height: 22px;
            cursor: pointer;
            accent-color: var(--warm-terracotta);
            flex-shrink: 0;
            margin-right: 0.5rem;
        }

        .extra-info {
            flex: 1;
        }

        .extra-name {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .extra-price {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1rem;
        }

        .price-result {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 2.5rem;
        }

        .price-breakdown {
            border-bottom: 2px solid var(--soft-cream);
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .price-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .price-line.hidden {
            display: none;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .total-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-navy);
        }

        .total-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--warm-terracotta);
        }

        .kaution-info {
            background: #FEF3C7;
            padding: 1.2rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .kaution-info i {
            color: #92400E;
            font-size: 1.2rem;
        }

        .kaution-info p {
            color: #92400E;
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .calc-cta {
            width: 100%;
            background: var(--deep-navy);
            color: white;
            padding: 1.2rem;
            border-radius: 12px;
            border: none;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0;
        }

        .calc-cta:hover {
            background: #0d1f3a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
        }
		
		/* Highlight für Rabatt-Option - nur grüner Text, kein Hintergrund */
		.extra-option.discount-highlight .extra-price {
			color: #4caf50;
			font-weight: 700;
			font-size: 1.1em;
		}



        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

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

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateX(4px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: var(--deep-navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-method-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .contact-method-text strong {
            display: block;
            color: var(--deep-navy);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-method-text a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .contact-method-text a:hover {
            color: var(--warm-terracotta);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }

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

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

        .form-group label {
            display: block;
            color: var(--deep-navy);
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(212, 128, 106, 0.02);
        }

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

        .submit-button {
            width: 100%;
            background: var(--warm-terracotta);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
            font-weight: 500;
        }

        .form-message.success {
            background: #D1FAE5;
            color: #065F46;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--deep-navy);
            color: rgba(245, 241, 232, 0.8);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .footer-section a {
            display: block;
            color: rgba(245, 241, 232, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--warm-terracotta);
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 241, 232, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(245, 241, 232, 0.5);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

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

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

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

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

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

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

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

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

            .section-header h2 {
                font-size: 3rem;
            }

            .hero-buttons {
                width: 100%;
            }

            .hero-buttons a {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .calculator-container {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .calculator-header h2 {
                font-size: 2rem;
            }

            .extra-option {
                padding: 0.9rem;
            }

            .price-result {
                padding: 1.5rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
    
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        .mobile-menu-toggle i {
            font-size: 1.8rem;
            color: var(--deep-navy);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(245, 241, 232, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.1);
            z-index: 999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            max-height: 600px;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1.5rem 2rem;
            gap: 0.5rem;
        }
        .mobile-nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 1rem;
            font-weight: 500;
            font-size: 1rem;
            border-bottom: 1px solid rgba(10, 22, 40, 0.05);
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        .mobile-nav-links a:hover {
            background: rgba(212, 128, 106, 0.1);
        }
        .mobile-nav-links .nav-cta {
            background: var(--warm-terracotta);
            color: white !important;
            text-align: center;
            border-radius: 8px;
            margin-top: 0.5rem;
            border: none;
            padding: 1.2rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle { display: block; }
            .mobile-nav { display: block; }
        }


/* ========== CSS Block 1 aus HTML verschoben ========== */
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
        @keyframes slideDown { from { transform: translateY(0); } to { transform: translateY(100%); } }
    

        /* Photo Gallery Slider */
        .photo-gallery-slider {
            width: 100%;
            overflow: hidden;
            background: var(--soft-cream);
            padding: 4rem 0;
            position: relative;
        }

        .gallery-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

    .gallery-track {
        cursor: grab;
        user-select: none;
    }
    
    .gallery-track:active {
        cursor: grabbing;
    }
    
    .gallery-track img {
        pointer-events: none; /* Verhindert Drag auf den Bildern selbst */
    }

        
        .gallery-track:active {
            cursor: grabbing;
        }
        
        .gallery-track img {
            pointer-events: none; /* Verhindert Drag auf den Bildern selbst */
        }

        .gallery-track:hover {
            animation-play-state: paused;
        }

        .gallery-item {
            flex-shrink: 0;
            width: 400px;
            height: 300px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(10, 22, 40, 0.25);
        }

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

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .photo-gallery-slider {
                padding: 3rem 0;
            }

            .gallery-item {
                width: 300px;
                height: 225px;
            }

            .gallery-track {
                gap: 1.5rem;
            }
        }


/* ========== CSS Block 2 aus HTML verschoben ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

        :root {
            --deep-navy: #0A1628;
            --warm-terracotta: #D4806A;
            --soft-cream: #F5F1E8;
            --accent-gold: #C9A66B;
            --text-dark: #1a1a1a;
            --text-light: #6B7280;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--soft-cream);
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(245, 241, 232, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(245, 241, 232, 0.95);
            box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-svg {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--deep-navy);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

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

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

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

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

        .nav-cta {
            background: var(--warm-terracotta);
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--warm-terracotta);
        }

        .nav-cta:hover {
            background: #c06f5a;
            border-color: #c06f5a;
            transform: translateY(-1px);
        }

        .nav-cta::after {
            display: none;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--soft-cream) 1px, transparent 1px),
                linear-gradient(90deg, var(--soft-cream) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-accent {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4.2rem;
            color: white;
            margin-bottom: 1.8rem;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .hero-text .highlight {
            color: var(--warm-terracotta);
            position: relative;
            display: inline-block;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: rgba(245, 241, 232, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 580px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--warm-terracotta);
            color: white;
            padding: 1.1rem 2.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-primary:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--soft-cream);
            padding: 1.1rem 2.8rem;
            border: 2px solid rgba(245, 241, 232, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--soft-cream);
            background: rgba(245, 241, 232, 0.05);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            border-left: 2px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(245, 241, 232, 0.6);
        }

        .hero-visual {
            position: relative;
        }

        .booth-mockup {
            background: linear-gradient(145deg, rgba(245, 241, 232, 0.08) 0%, rgba(245, 241, 232, 0.02) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }



        .mockup-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .mockup-icon {
            margin-bottom: 1.5rem;
        }

        .mockup-icon img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feature-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .badge {
            background: rgba(245, 241, 232, 0.15);
            color: var(--soft-cream);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(245, 241, 232, 0.2);
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .experience-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--deep-navy);
            color: white;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            font-weight: 600;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-img-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .about-img-card:hover {
            transform: translateY(-4px);
        }

        .about-img-card i {
            font-size: 3rem;
            color: var(--warm-terracotta);
            margin-bottom: 1rem;
        }

        .about-img-card h4 {
            font-size: 1.1rem;
            color: var(--deep-navy);
            margin-bottom: 0.5rem;
        }

        .about-img-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Features Section */
        .features {
            padding: 8rem 3rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-label {
            color: var(--warm-terracotta);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 6rem;
            color: var(--deep-navy);
            margin-bottom: 2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--soft-cream);
            padding: 2.5rem;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: rgba(212, 128, 106, 0.2);
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
        }

        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
        }

        .feature-icon-wrap i {
            font-size: 1.8rem;
            color: var(--warm-terracotta);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Price Calculator */
        .calculator {
            padding: 8rem 3rem;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .calculator::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        .calculator-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .calculator-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .calculator-header p {
            font-size: 1.15rem;
            color: rgba(245, 241, 232, 0.7);
        }

        .calculator-container {
            background: rgba(245, 241, 232, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
        }

        .calc-section {
            margin-bottom: 2.5rem;
        }

        .calc-section label {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .calc-section input[type="number"] {
            width: 100%;
            background: rgba(245, 241, 232, 0.1);
            border: 2px solid rgba(245, 241, 232, 0.2);
            border-radius: 12px;
            padding: 1.2rem;
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .calc-section input[type="number"]:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(245, 241, 232, 0.15);
        }

        .extras-grid {
            display: grid;
            gap: 1rem;
        }

        .extra-option {
            background: rgba(245, 241, 232, 0.08);
            border: 2px solid rgba(245, 241, 232, 0.15);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .extra-option:hover {
            background: rgba(245, 241, 232, 0.12);
            border-color: rgba(245, 241, 232, 0.25);
        }

        .extra-option input[type="checkbox"] {
            width: 22px;
            height: 22px;
            cursor: pointer;
            accent-color: var(--warm-terracotta);
            flex-shrink: 0;
            margin-right: 0.5rem;
        }

        .extra-info {
            flex: 1;
        }

        .extra-name {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .extra-price {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1rem;
        }

        .price-result {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 2.5rem;
        }

        .price-breakdown {
            border-bottom: 2px solid var(--soft-cream);
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .price-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .price-line.hidden {
            display: none;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .total-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-navy);
        }

        .total-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--warm-terracotta);
        }

        .kaution-info {
            background: #FEF3C7;
            padding: 1.2rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .kaution-info i {
            color: #92400E;
            font-size: 1.2rem;
        }

        .kaution-info p {
            color: #92400E;
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .calc-cta {
            width: 100%;
            background: var(--deep-navy);
            color: white;
            padding: 1.2rem;
            border-radius: 12px;
            border: none;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0;
        }

        .calc-cta:hover {
            background: #0d1f3a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

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

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateX(4px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: var(--deep-navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-method-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .contact-method-text strong {
            display: block;
            color: var(--deep-navy);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-method-text a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .contact-method-text a:hover {
            color: var(--warm-terracotta);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }

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

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

        .form-group label {
            display: block;
            color: var(--deep-navy);
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(212, 128, 106, 0.02);
        }

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

        .submit-button {
            width: 100%;
            background: var(--warm-terracotta);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
            font-weight: 500;
        }

        .form-message.success {
            background: #D1FAE5;
            color: #065F46;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--deep-navy);
            color: rgba(245, 241, 232, 0.8);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .footer-section a {
            display: block;
            color: rgba(245, 241, 232, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--warm-terracotta);
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 241, 232, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(245, 241, 232, 0.5);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

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

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

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

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

        @media (max-width: 768px) {

            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

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

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

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

            .section-header h2 {
                font-size: 3rem;
            }

            .hero-buttons {
                width: 100%;
            }

            .hero-buttons a {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .calculator-container {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .calculator-header h2 {
                font-size: 2rem;
            }

            .extra-option {
                padding: 0.9rem;
            }

            .price-result {
                padding: 1.5rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
    
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        .mobile-menu-toggle i {
            font-size: 1.8rem;
            color: var(--deep-navy);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(245, 241, 232, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.1);
            z-index: 999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            max-height: 600px;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1.5rem 2rem;
            gap: 0.5rem;
        }
        .mobile-nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 1rem;
            font-weight: 500;
            font-size: 1rem;
            border-bottom: 1px solid rgba(10, 22, 40, 0.05);
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        .mobile-nav-links a:hover {
            background: rgba(212, 128, 106, 0.1);
        }
        .mobile-nav-links .nav-cta {
            background: var(--warm-terracotta);
            color: white !important;
            text-align: center;
            border-radius: 8px;
            margin-top: 0.5rem;
            border: none;
            padding: 1.2rem;
        }
	    .mobile-nav {
			border-bottom: none !important;
			border-top: none !important;
		}
	}
        @media (max-width: 768px) {
            .mobile-menu-toggle { display: block; }
            .mobile-nav { display: block; }
        }
		



/* ========== Style Block 1 aus HTML ========== */
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
        @keyframes slideDown { from { transform: translateY(0); } to { transform: translateY(100%); } }
    

        /* Photo Gallery Slider */
        .photo-gallery-slider {
            width: 100%;
            overflow: hidden;
            background: var(--soft-cream);
            padding: 4rem 0;
            position: relative;
        }

        .gallery-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .gallery-track {
            display: flex;
            gap: 2rem;
            animation: scroll-left 60s linear infinite;
            width: fit-content;
        }

        .gallery-track:hover {
            animation-play-state: paused;
        }

        .gallery-item {
            flex-shrink: 0;
            width: 400px;
            height: 300px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(10, 22, 40, 0.25);
        }

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

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .photo-gallery-slider {
                padding: 3rem 0;
            }

            .gallery-item {
                width: 300px;
                height: 225px;
            }

            .gallery-track {
                gap: 1.5rem;
            }
        }


/* ========== Style Block 2 aus HTML ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

        :root {
            --deep-navy: #0A1628;
            --warm-terracotta: #D4806A;
            --soft-cream: #F5F1E8;
            --accent-gold: #C9A66B;
            --text-dark: #1a1a1a;
            --text-light: #6B7280;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--soft-cream);
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(245, 241, 232, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(245, 241, 232, 0.95);
            box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-svg {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--deep-navy);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

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

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

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

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

        .nav-cta {
            background: var(--warm-terracotta);
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--warm-terracotta);
        }

        .nav-cta:hover {
            background: #c06f5a;
            border-color: #c06f5a;
            transform: translateY(-1px);
        }

        .nav-cta::after {
            display: none;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--soft-cream) 1px, transparent 1px),
                linear-gradient(90deg, var(--soft-cream) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-accent {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4.2rem;
            color: white;
            margin-bottom: 1.8rem;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .hero-text .highlight {
            color: var(--warm-terracotta);
            position: relative;
            display: inline-block;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: rgba(245, 241, 232, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 580px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--warm-terracotta);
            color: white;
            padding: 1.1rem 2.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-primary:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--soft-cream);
            padding: 1.1rem 2.8rem;
            border: 2px solid rgba(245, 241, 232, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--soft-cream);
            background: rgba(245, 241, 232, 0.05);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            border-left: 2px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(245, 241, 232, 0.6);
        }

        .hero-visual {
            position: relative;
        }

        .booth-mockup {
            background: linear-gradient(145deg, rgba(245, 241, 232, 0.08) 0%, rgba(245, 241, 232, 0.02) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }



        .mockup-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .mockup-icon {
            margin-bottom: 1.5rem;
        }

        .mockup-icon img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feature-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .badge {
            background: rgba(245, 241, 232, 0.15);
            color: var(--soft-cream);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(245, 241, 232, 0.2);
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .experience-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--deep-navy);
            color: white;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            font-weight: 600;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-img-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .about-img-card:hover {
            transform: translateY(-4px);
        }

        .about-img-card i {
            font-size: 3rem;
            color: var(--warm-terracotta);
            margin-bottom: 1rem;
        }

        .about-img-card h4 {
            font-size: 1.1rem;
            color: var(--deep-navy);
            margin-bottom: 0.5rem;
        }

        .about-img-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Features Section */
        .features {
            padding: 8rem 3rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-label {
            color: var(--warm-terracotta);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 6rem;
            color: var(--deep-navy);
            margin-bottom: 2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--soft-cream);
            padding: 2.5rem;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: rgba(212, 128, 106, 0.2);
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
        }

        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
        }

        .feature-icon-wrap i {
            font-size: 1.8rem;
            color: var(--warm-terracotta);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Price Calculator */
        .calculator {
            padding: 8rem 3rem;
            background: var(--deep-navy);
            position: relative;
            overflow: hidden;
        }

        .calculator::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 128, 106, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        .calculator-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .calculator-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .calculator-header p {
            font-size: 1.15rem;
            color: rgba(245, 241, 232, 0.7);
        }

        .calculator-container {
            background: rgba(245, 241, 232, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 241, 232, 0.1);
            border-radius: 24px;
            padding: 3rem;
        }

        .calc-section {
            margin-bottom: 2.5rem;
        }

        .calc-section label {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .calc-section input[type="number"] {
            width: 100%;
            background: rgba(245, 241, 232, 0.1);
            border: 2px solid rgba(245, 241, 232, 0.2);
            border-radius: 12px;
            padding: 1.2rem;
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .calc-section input[type="number"]:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(245, 241, 232, 0.15);
        }

        .extras-grid {
            display: grid;
            gap: 1rem;
        }

        .extra-option {
            background: rgba(245, 241, 232, 0.08);
            border: 2px solid rgba(245, 241, 232, 0.15);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .extra-option:hover {
            background: rgba(245, 241, 232, 0.12);
            border-color: rgba(245, 241, 232, 0.25);
        }

        .extra-option input[type="checkbox"] {
            width: 22px;
            height: 22px;
            cursor: pointer;
            accent-color: var(--warm-terracotta);
            flex-shrink: 0;
            margin-right: 0.5rem;
        }

        .extra-info {
            flex: 1;
        }

        .extra-name {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .extra-price {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1rem;
        }

        .price-result {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 2.5rem;
        }

        .price-breakdown {
            border-bottom: 2px solid var(--soft-cream);
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .price-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .price-line.hidden {
            display: none;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .total-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-navy);
        }

        .total-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--warm-terracotta);
        }

        .kaution-info {
            background: #FEF3C7;
            padding: 1.2rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .kaution-info i {
            color: #92400E;
            font-size: 1.2rem;
        }

        .kaution-info p {
            color: #92400E;
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .calc-cta {
            width: 100%;
            background: var(--deep-navy);
            color: white;
            padding: 1.2rem;
            border-radius: 12px;
            border: none;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0;
        }

        .calc-cta:hover {
            background: #0d1f3a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: var(--soft-cream);
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

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

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateX(4px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: var(--deep-navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-method-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .contact-method-text strong {
            display: block;
            color: var(--deep-navy);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-method-text a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .contact-method-text a:hover {
            color: var(--warm-terracotta);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }

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

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

        .form-group label {
            display: block;
            color: var(--deep-navy);
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--warm-terracotta);
            background: rgba(212, 128, 106, 0.02);
        }

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

        .submit-button {
            width: 100%;
            background: var(--warm-terracotta);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: #c06f5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 128, 106, 0.3);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
            font-weight: 500;
        }

        .form-message.success {
            background: #D1FAE5;
            color: #065F46;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--deep-navy);
            color: rgba(245, 241, 232, 0.8);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .footer-section a {
            display: block;
            color: rgba(245, 241, 232, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--warm-terracotta);
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 241, 232, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(245, 241, 232, 0.5);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

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

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

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

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

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

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

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

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

            .section-header h2 {
                font-size: 3rem;
            }

            .hero-buttons {
                width: 100%;
            }

            .hero-buttons a {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .calculator-container {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .calculator-header h2 {
                font-size: 2rem;
            }

            .extra-option {
                padding: 0.9rem;
            }

            .price-result {
                padding: 1.5rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
    
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        .mobile-menu-toggle i {
            font-size: 1.8rem;
            color: var(--deep-navy);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(245, 241, 232, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(10, 22, 40, 0.1);
            z-index: 999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            max-height: 600px;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1.5rem 2rem;
            gap: 0.5rem;
        }
        .mobile-nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 1rem;
            font-weight: 500;
            font-size: 1rem;
            border-bottom: 1px solid rgba(10, 22, 40, 0.05);
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        .mobile-nav-links a:hover {
            background: rgba(212, 128, 106, 0.1);
        }
        .mobile-nav-links .nav-cta {
            background: var(--warm-terracotta);
            color: white !important;
            text-align: center;
            border-radius: 8px;
            margin-top: 0.5rem;
            border: none;
            padding: 1.2rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle { display: block; }
            .mobile-nav { display: block; }
        }


/* ========== CSS aus agb.html ========== */
.legal-page {
            background: var(--soft-cream);
            padding-top: 120px;
            padding-bottom: 6rem;
        }
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .legal-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .legal-header h1 {
            font-size: 3.5rem;
            color: var(--deep-navy);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .legal-header .last-updated {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .legal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }
        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--deep-navy);
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--soft-cream);
        }
        .legal-content h2:first-child {
            margin-top: 0;
        }
        .legal-content h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        .legal-content p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }
        .legal-content ul {
            margin: 1rem 0 1.5rem 1.5rem;
            color: var(--text-dark);
        }
        .legal-content li {
            margin-bottom: 0.6rem;
            line-height: 1.7;
        }
        .legal-content a {
            color: var(--warm-terracotta);
            text-decoration: none;
            font-weight: 500;
        }
        .legal-content a:hover {
            text-decoration: underline;
        }
        .contact-box {
            background: var(--soft-cream);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 4px solid var(--warm-terracotta);
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        .back-link:hover {
            color: var(--warm-terracotta);
        }
        @media (max-width: 768px) {
            .legal-page {
                padding-top: 100px;
            }
            .legal-header h1 {
                font-size: 2.2rem;
            }
            .legal-content {
                padding: 2rem 1.5rem;
            }
            .legal-content h2 {
                font-size: 1.5rem;
            }
        }


/* ========== CSS aus widerruf.html ========== */
.legal-page {
            background: var(--soft-cream);
            padding-top: 120px;
            padding-bottom: 6rem;
        }
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .legal-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .legal-header h1 {
            font-size: 3.5rem;
            color: var(--deep-navy);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .legal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }
        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--deep-navy);
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--soft-cream);
        }
        .legal-content h2:first-child {
            margin-top: 0;
        }
        .legal-content p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }
        .legal-content a {
            color: var(--warm-terracotta);
            text-decoration: none;
            font-weight: 500;
        }
        .legal-content a:hover {
            text-decoration: underline;
        }
        .contact-box {
            background: var(--soft-cream);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 4px solid var(--warm-terracotta);
        }
        .form-box {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 2px dashed var(--warm-terracotta);
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        .back-link:hover {
            color: var(--warm-terracotta);
        }
        @media (max-width: 768px) {
            .legal-page {
                padding-top: 100px;
            }
            .legal-header h1 {
                font-size: 2.2rem;
            }
            .legal-content {
                padding: 2rem 1.5rem;
            }
            .legal-content h2 {
                font-size: 1.5rem;
            }
        }


/* ========== CSS aus impressum.html ========== */
.legal-page {
            background: var(--soft-cream);
            padding-top: 120px;
            padding-bottom: 6rem;
        }

        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .legal-header h1 {
            font-size: 3.5rem;
            color: var(--deep-navy);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .legal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }

        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--deep-navy);
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--soft-cream);
        }

        .legal-content h2:first-child {
            margin-top: 0;
        }

        .legal-content h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }

        .legal-content p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .legal-content a {
            color: var(--warm-terracotta);
            text-decoration: none;
            font-weight: 500;
        }

        .legal-content a:hover {
            text-decoration: underline;
        }

        .contact-box {
            background: var(--soft-cream);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 4px solid var(--warm-terracotta);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }

        .back-link:hover {
            color: var(--warm-terracotta);
        }

        @media (max-width: 768px) {
            .legal-page {
                padding-top: 100px;
            }

            .legal-header h1 {
                font-size: 2.2rem;
            }

            .legal-content {
                padding: 2rem 1.5rem;
            }

            .legal-content h2 {
                font-size: 1.5rem;
            }
        }


/* ========== CSS aus datenschutz.html ========== */
.legal-page {
            background: var(--soft-cream);
            padding-top: 120px;
            padding-bottom: 6rem;
        }

        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .legal-header h1 {
            font-size: 3.5rem;
            color: var(--deep-navy);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .legal-header .last-updated {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .legal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
        }

        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--deep-navy);
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--soft-cream);
        }

        .legal-content h2:first-child {
            margin-top: 0;
        }

        .legal-content h3 {
            font-size: 1.3rem;
            color: var(--deep-navy);
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }

        .legal-content p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .legal-content ul {
            margin: 1rem 0 1.5rem 1.5rem;
            color: var(--text-dark);
        }

        .legal-content li {
            margin-bottom: 0.6rem;
            line-height: 1.7;
        }

        .legal-content a {
            color: var(--warm-terracotta);
            text-decoration: none;
            font-weight: 500;
        }

        .legal-content a:hover {
            text-decoration: underline;
        }

        .contact-box {
            background: var(--soft-cream);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 4px solid var(--warm-terracotta);
        }

        .contact-box h3 {
            margin-top: 0;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }

        .back-link:hover {
            color: var(--warm-terracotta);
        }

        @media (max-width: 768px) {
            .legal-page {
                padding-top: 100px;
            }

            .legal-header h1 {
                font-size: 2.2rem;
            }

            .legal-content {
                padding: 2rem 1.5rem;
            }

            .legal-content h2 {
                font-size: 1.5rem;
            }
        }

/* ========== NAVBAR SLOGAN ========== */
.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-slogan {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: lowercase;
    opacity: 0.8;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 6rem 2rem;
    background: var(--soft-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Header - kleinerer Titel nur für Desktop */
.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--warm-terracotta);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--warm-terracotta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ========== CONSENT CHECKBOX FIX ========== */
.consent-checkbox label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    cursor: pointer !important;
}

.consent-checkbox input[type="checkbox"] {
    flex-shrink: 0 !important;
    margin-top: 0.2rem !important;
    min-width: 20px !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    accent-color: var(--warm-terracotta) !important;
}

.consent-checkbox span {
    flex: 1 !important;
}

/* ========== ERWEITERTE MOBILE FIXES ========== */

@media (max-width: 768px) {
    .hero-content,
    .about-container,
    .contact-wrapper,
    .calculator-wrapper,
    .features-grid {
        padding: 2rem 1.5rem !important;
        max-width: 100% !important;
    }
    nav {
        padding: 1rem 1.5rem !important;
    }
    .logo-text { font-size: 1.2rem !important; }
    .logo-slogan { font-size: 0.55rem !important; }
    .logo-svg { width: 36px !important; height: 36px !important; }
    .hero { min-height: auto !important; padding-bottom: 4rem !important; }
    .hero-content { padding: 3rem 1.5rem !important; gap: 2rem !important; }
    .hero-text h1 { font-size: 2rem !important; line-height: 1.2 !important; margin-bottom: 1rem !important; }
    .hero-text p { font-size: 1rem !important; margin-bottom: 1.5rem !important; max-width: 100% !important; }
    .hero-buttons { width: 100% !important; flex-direction: column !important; gap: 1rem !important; margin-bottom: 2rem !important; }
    .hero-buttons a, .btn-primary, .btn-secondary { width: 100% !important; max-width: 100% !important; justify-content: center !important; text-align: center !important; padding: 1rem 1.5rem !important; font-size: 1rem !important; min-height: 48px !important; }
    .nav-cta { padding: 0.8rem 1.5rem !important; min-height: 44px !important; }
    .hero-stats { flex-direction: column !important; gap: 1.5rem !important; width: 100% !important; }
    .stat-item { width: 100% !important; }
    .stat-number { font-size: 1.8rem !important; }
    .stat-label { font-size: 0.85rem !important; }
    .hero-visual { width: 100% !important; max-width: 100% !important; }
    .booth-mockup { padding: 2rem 1.5rem !important; margin: 0 !important; }
    .mockup-icon { font-size: 3rem !important; }
    .feature-badges { justify-content: center !important; }
    .badge { font-size: 0.8rem !important; padding: 0.5rem 1rem !important; }
    .about { padding: 4rem 1.5rem !important; }
    .about-content h2 { font-size: 2rem !important; margin-bottom: 1rem !important; }
    .about-content p { font-size: 1rem !important; margin-bottom: 1rem !important; }
    .experience-tag { font-size: 0.9rem !important; padding: 0.8rem 1.2rem !important; width: 100% !important; justify-content: center !important; }
    .about-image-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .about-img-card { padding: 1.5rem !important; }
    .about-img-card i { font-size: 2.5rem !important; }
    .features { padding: 4rem 1.5rem !important; }
    .section-header { margin-bottom: 3rem !important; }
    .section-header h2 { font-size: 2.5rem !important; line-height: 1.1 !important; }
    .section-header p { font-size: 1rem !important; }
    .features-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .feature-card { padding: 2rem 1.5rem !important; }
    .feature-card h3 { font-size: 1.2rem !important; }
    .feature-card p { font-size: 0.9rem !important; }
    .photo-gallery-slider { padding: 2rem 0 !important; }
    .gallery-item { width: 280px !important; height: 210px !important; }
    .gallery-track { gap: 1rem !important; }

    /* FAQ Mobile */
    .faq { padding: 4rem 1rem !important; }
    .faq-header h2 { font-size: 2rem !important; }
    .faq-question { padding: 1.2rem 1.2rem !important; font-size: 1rem !important; }
    .faq-item.active .faq-answer { padding: 0 1.2rem 1.2rem 1.2rem !important; }
    .faq-answer p { font-size: 0.95rem !important; }

    footer { padding: 3rem 1.5rem 1.5rem !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; margin-bottom: 2rem !important; }
    .footer-brand h3 { font-size: 1.3rem !important; }
    .footer-brand p { font-size: 0.9rem !important; }
}

	.logo-text,
	.logo-text:hover {
	  text-decoration: none;
	}

	/* ========== Anleitung/Guide Page Styles - KORRIGIERT ========== */

	.guide-page {
		background: var(--soft-cream);
	}

	/* BREITE ANGEPASST - wie bei legal-container */
	.legal-container {
		max-width: 1200px; /* WAR 900px - JETZT BREITER */
		margin: 0 auto;
		padding: 0 2rem;
	}

	.guide-content {
		line-height: 1.9;
	}

	.guide-content .subtitle {
		font-size: 1.2rem;
		color: var(--text-light);
		margin-top: 0.5rem;
	}

	.guide-content h2 {
		display: flex;
		align-items: center;
		gap: 0.8rem;
		margin-top: 3.5rem;
	}

	.guide-content h2 i {
		color: var(--warm-terracotta);
		font-size: 1.6rem;
	}

	/* Guide Steps */
	.guide-steps {
		margin: 2rem 0;
	}

	.guide-step {
		display: flex;
		gap: 1.5rem;
		margin-bottom: 2rem;
		background: var(--soft-cream);
		padding: 1.5rem;
		border-radius: 12px;
		border-left: 4px solid var(--warm-terracotta);
	}

	.step-number {
		flex-shrink: 0;
		width: 50px;
		height: 50px;
		background: var(--deep-navy);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		font-weight: 700;
	}

	.step-content h3 {
		color: var(--deep-navy);
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
	}

	.step-content p {
		color: var(--text-dark);
		margin: 0;
	}

	/* Guide Features Grid */
	.guide-features-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
		margin: 2rem 0;
	}

	.guide-feature {
		background: var(--soft-cream);
		padding: 2rem;
		border-radius: 12px;
		text-align: center;
		transition: transform 0.3s ease;
	}

	.guide-feature:hover {
		transform: translateY(-4px);
	}

	.guide-feature i {
		font-size: 3rem;
		color: var(--warm-terracotta);
		margin-bottom: 1rem;
	}

	.guide-feature h3 {
		font-size: 1.1rem;
		color: var(--deep-navy);
		margin-bottom: 0.8rem;
	}

	.guide-feature p {
		color: var(--text-dark);
		font-size: 0.95rem;
		margin: 0;
	}

	/* WiFi Connection Box - HIGHLIGHT SECTION */
	.wifi-connection-box {
		background: linear-gradient(135deg, #0A1628 0%, #1a2f4a 100%);
		padding: 3rem;
		border-radius: 20px;
		margin: 2.5rem 0;
		box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
	}

	.wifi-info {
		display: flex;
		gap: 2rem;
		margin-bottom: 2.5rem;
		align-items: flex-start;
	}

	.wifi-icon {
		flex-shrink: 0;
		width: 80px;
		height: 80px;
		background: var(--warm-terracotta);
		border-radius: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.wifi-icon i {
		font-size: 2.5rem;
		color: white;
	}

	.wifi-details {
		flex: 1;
	}

	.wifi-details h3 {
		color: white;
		font-size: 1.5rem;
		margin-bottom: 1rem;
		margin-top: 0;
	}

	.wifi-details ol {
		color: rgba(245, 241, 232, 0.9);
		padding-left: 1.5rem;
		line-height: 1.9;
	}

	.wifi-details ol li {
		margin-bottom: 0.8rem;
	}

	.wifi-details strong {
		color: var(--accent-gold);
		font-weight: 600;
	}

	/* QR Display Area - TEXT KORRIGIERT */
	.qr-display {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		background: rgba(245, 241, 232, 0.05);
		padding: 2rem;
		border-radius: 16px;
		border: 2px dashed rgba(245, 241, 232, 0.2);
	}

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

	.qr-placeholder {
		background: white;
		width: 200px;
		height: 200px;
		margin: 0 auto 1rem;
		border-radius: 12px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	}

	.qr-placeholder i {
		font-size: 4rem;
		color: var(--deep-navy);
		margin-bottom: 0.5rem;
	}

	.qr-placeholder p {
		font-size: 0.85rem;
		color: var(--text-light);
		margin: 0;
		padding: 0 1rem;
	}

	/* QR-INFO-TEXT HELL GEMACHT - FIX! */
	.qr-info-text {
		color: white !important; /* WAR rgba(245, 241, 232, 0.8) - JETZT WEISS */
		font-size: 0.95rem;
		line-height: 1.7;
		background: rgba(255, 255, 255, 0.1); /* HELLER HINTERGRUND für bessere Lesbarkeit */
		padding: 1rem;
		border-radius: 8px;
	}

	.qr-info-text strong {
		color: var(--accent-gold);
		font-weight: 600;
	}

	.connection-url {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.connection-url i {
		font-size: 3rem;
		color: var(--accent-gold);
		margin-bottom: 1rem;
	}

	.connection-url p {
		color: rgba(245, 241, 232, 0.9);
		margin: 0;
		line-height: 1.8;
	}

	.connection-url strong {
		color: white;
		font-size: 1.1rem;
		display: block;
		margin-top: 0.5rem;
		background: rgba(245, 241, 232, 0.1);
		padding: 0.8rem 1.5rem;
		border-radius: 8px;
	}

	/* Info Boxes */
	.info-box {
		display: flex;
		gap: 1.2rem;
		padding: 1.5rem;
		border-radius: 12px;
		margin: 2rem 0;
		align-items: flex-start;
	}

	.info-box i {
		font-size: 1.8rem;
		flex-shrink: 0;
	}

	.info-box h4 {
		color: var(--deep-navy);
		margin: 0 0 0.5rem 0;
		font-size: 1.1rem;
	}

	.info-box p {
		margin: 0;
		color: var(--text-dark);
	}

	.wifi-tip {
		background: #FEF3C7;
		border-left: 4px solid #F59E0B;
	}

	.wifi-tip i {
		color: #F59E0B;
	}

	.success-box {
		background: #D1FAE5;
		border-left: 4px solid #10B981;
	}

	.success-box i {
		color: #10B981;
	}


	/* FAQ List - UMBENANNT zu guide-faq-item */
	.faq-list {
		margin: 2rem 0;
	}

	.guide-faq-item {
		background: var(--soft-cream);
		padding: 1.5rem;
		border-radius: 12px;
		margin-bottom: 1.2rem;
		border-left: 4px solid var(--warm-terracotta);
	}

	.guide-faq-item h3 {
		display: flex;
		align-items center;
		gap: 0.8rem;
		color: var(--deep-navy);
		font-size: 1.1rem;
		margin: 0 0 0.8rem 0;
	}

	.guide-faq-item h3 i {
		color: var(--warm-terracotta);
	}

	.guide-faq-item p {
		margin: 0;
		color: var(--text-dark);
	}

	.guide-faq-item strong {
		color: var(--deep-navy);
	}


/* Emergency Contact Box */
.emergency-contact {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.emergency-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-contact h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.emergency-contact p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-contact a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.emergency-contact a:hover {
    border-color: white;
}

.emergency-contact .small-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* MOBILE: Container schmaler */
    .legal-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .wifi-info {
        flex-direction: column;
    }
    
    .qr-display {
        grid-template-columns: 1fr;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .wifi-connection-box {
        padding: 2rem 1.5rem;
    }
    
    .emergency-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-icon {
        margin: 0 auto;
    }
}



@media (max-width: 768px) {
    .calculator {
        padding: 4rem 0.5rem !important;
    }

    .calculator-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .calculator-container {
        padding: 1.5rem 0.8rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
    }

    .calc-section {
        margin-bottom: 1.5rem !important;
    }

    .calc-section label {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
    }

    .calc-section input[type="number"] {
        padding: 0.9rem !important;
        font-size: 1rem !important;
        width: 100% !important;
    }

    .extra-option {
        padding: 0.8rem !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .extra-option input[type="checkbox"] {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
    }

    .extra-info {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .extra-name {
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
    }

    .extra-price {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }

    .price-result {
        padding: 1.2rem 0.8rem !important;
        margin-top: 1.5rem !important;
    }

    .total-label {
        font-size: 1rem !important;
    }

    .total-amount {
        font-size: 2rem !important;
    }

    .kaution-info {
        padding: 0.8rem !important;
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
    }

    .kaution-info i {
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }

    .kaution-info p {
        font-size: 0.85rem !important;
    }

    .calc-cta {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .contact {
        padding: 4rem 0.5rem !important;
    }

    .contact-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        gap: 2rem !important;
    }

    .contact-form-container {
        padding: 1.5rem 0.8rem !important;
        margin: 0 !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .form-group {
        margin-bottom: 0.8rem !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .submit-button {
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        width: 100% !important;
    }

    .contact-info {
        padding: 0 0.8rem !important;
    }

    .contact-info h2 {
        font-size: 1.8rem !important;
    }

    .contact-info > p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
	/* QR-INFO-TEXT - DESKTOP UND MOBILE WEIß */
	.qr-info-text {
		background: rgba(255, 255, 255, 0.1);
		padding: 1rem;
		border-radius: 8px;
	}

	.qr-info-text p {
		color: white !important; /* WEIßER TEXT FÜR DESKTOP */
		font-size: 0.95rem;
		line-height: 1.7;
		margin: 0;
	}

	.qr-info-text strong {
		color: var(--accent-gold) !important;
		font-weight: 600;
	}

	/* AUCH FÜR MOBILE EXPLIZIT WEIß */
	@media (max-width: 768px) {
		.qr-info-text p {
			color: white !important;
		}
	}



@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.75rem !important; }
    .section-header h2 { font-size: 2rem !important; }
    .about-content h2, .contact-info h2 { font-size: 1.75rem !important; }
    .gallery-item { width: 240px !important; height: 180px !important; }

    .calculator {
        padding: 3rem 0.3rem !important;
    }

    .calculator-container {
        padding: 1.2rem 0.6rem !important;
    }

    .contact {
        padding: 3rem 0.3rem !important;
    }

    .contact-form-container {
        padding: 1.2rem 0.6rem !important;
    }

    .total-amount {
        font-size: 1.8rem !important;
    }

    .faq-header h2 { font-size: 1.75rem !important; }
    .faq-question { font-size: 0.95rem !important; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content { padding: 4rem 2rem !important; }
    .hero-text h1 { font-size: 3rem !important; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .about-container, .contact-wrapper { gap: 3rem !important; }
}
/* =======================================================
   Galerie & Lightbox
   ======================================================= */
.gallery { max-width: 1200px; margin: 6rem auto 4rem; padding: 0 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid a { position: relative; overflow: hidden; border-radius: 12px; background: #fff; border:1px solid rgba(10,22,40,0.08); }
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s ease; display: block; }
.gallery-grid a:hover img { transform: scale(1.03); }

.lightbox { position: fixed; inset: 0; background: rgba(10,22,40,.85); display: none; align-items: center; justify-content: center; z-index: 10000; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 96vw; max-height: 92vh; }
.lightbox-img { max-width: 96vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox-caption { color: #e9edf6; margin-top: .75rem; text-align: center; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); border: none; background: rgba(10,22,40,.7); color:#fff; width: 44px; height: 44px; border-radius: 999px; cursor: pointer; display:flex; align-items:center; justify-content:center; }
.lb-prev { left: -58px; }
.lb-next { right: -58px; }
.lb-close { position: absolute; top: -54px; right: 0; width: 40px; height: 40px; border-radius: 999px; background: rgba(10,22,40,.7); border: none; color:#fff; cursor: pointer; }

@media (max-width: 900px) { 
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-prev { left: -8px; }
  .lb-next { right: -8px; }
}
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }


/* ========== Galerie Page Styles ========== */

/* Galerie Section */
.gallery-section {
    padding: 140px 3rem 6rem;
    background: var(--soft-cream);
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gallery-header h1 {
    font-size: 3.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gallery-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Galerie Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.2);
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 22, 40, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    transition: all 0.3s ease;
    z-index: 10000;
}

.lb-close {
    top: 2rem;
    right: 2rem;
}

.lb-prev {
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: var(--warm-terracotta);
    color: white;
}

.lb-prev:hover, .lb-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 120px 1.5rem 4rem;
    }

    .gallery-header h1 {
        font-size: 2.5rem;
    }

    .gallery-header p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid img {
        height: 250px;
    }

    .lb-prev, .lb-next, .lb-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lb-prev { left: 1rem; }
    .lb-next { right: 1rem; }
    .lb-close { top: 1rem; right: 1rem; }
}
/* ========== GALERIE FIX - NUR FÜR GALERIE-SEITE ========== */

/* WICHTIG: Dieser Fix verwendet einen sehr spezifischen Selektor,
   der NUR auf der Galerie-Seite greift und andere Seiten nicht beeinflusst */

/* Main Container für Galerie-Seite */
main.gallery {
    padding: 140px 3rem 6rem;
    background: var(--soft-cream);
    min-height: 100vh;
}

/* Section Header auf Galerie-Seite */
main.gallery .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

main.gallery .section-label {
    display: inline-block;
    background: var(--warm-terracotta);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

main.gallery .section-header h2 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

main.gallery .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Grid - HÖCHSTE SPEZIFITÄT für max-width Override */
main.gallery #gallery.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Gallery Links - HÖCHSTE SPEZIFITÄT */
main.gallery #gallery.gallery-grid a {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: none;
}

main.gallery #gallery.gallery-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.2);
}

/* Gallery Images - HÖCHSTE SPEZIFITÄT */
main.gallery #gallery.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    max-width: none;
}

/* Lightbox - nur auf Galerie-Seite */
main.gallery ~ .lightbox,
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 22, 40, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.lightbox[aria-hidden="false"] {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    width: auto;
    height: auto;
}

.lb-btn, .lb-close {
    position: absolute;
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    transition: all 0.3s ease;
    z-index: 10000;
}

.lb-close {
    top: -60px;
    right: 0;
}

.lb-prev {
    left: -70px;
}

.lb-next {
    right: -70px;
}

.lb-btn:hover, .lb-close:hover {
    background: var(--warm-terracotta);
    color: white;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    main.gallery {
        padding: 120px 1.5rem 4rem;
    }
    
    main.gallery .section-header h2 {
        font-size: 2.5rem;
    }
    
    main.gallery .section-header p {
        font-size: 1rem;
    }
    
    main.gallery #gallery.gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    main.gallery #gallery.gallery-grid a {
        height: 250px;
    }
    
    .lb-btn, .lb-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lb-prev {
        left: 10px;
    }
    
    .lb-next {
        right: 10px;
    }
    
    .lb-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 560px) {
    main.gallery #gallery.gallery-grid {
        grid-template-columns: 1fr;
    }
    
    main.gallery #gallery.gallery-grid a {
        height: 220px;
    }
}
