/*
Theme Name: Hochzeit24
Description: WordPress Theme für Hochzeits-Branchenverzeichnis in Oberbayern
Version: 1.0
Author: Hochzeit24 Team
*/

/* =========================================================================
   CSS Reset & Base Styles
   ========================================================================= */

:root {
  /* Höhe deines Sticky-Headers anpassen */
  --anchor-offset: 120px; /* z.B. 96 oder was bei dir passt */
}

/* Globale Anker-Offset für native Sprünge und scrollIntoView */
html {
  scroll-padding-top: var(--anchor-offset);
}

/* Ziel-Elemente: deine Karten */
.dienstleister-card {
  scroll-margin-top: var(--anchor-offset);
}


* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* =========================================================================
   Typography
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
    color: #994795;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin: 0 0 1rem 0;
    color: #555;
}

.dienstleister-title,
.premium-title {
	font-family: "Indie Flower", cursive;
  	font-style: normal;
}

.dienstleister-title a,
.premium-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dienstleister-title a:hover,
.premium-title a:hover {
    color: #7a3a77;
}

/* =========================================================================
   Links
   ========================================================================= */

a {
    color: #994795;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #994795;
    outline-offset: 2px;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #994795;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #7a3a77;
    color: white;
    text-decoration: none;
}

.btn:focus {
    outline: 2px solid #994795;
    outline-offset: 2px;
}

.btn-secondary {
    background-color: #b85bb3;
    color: white;
}

.btn-secondary:hover {
    background-color: #a04a9c;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #994795;
    border: 2px solid #994795;
}

.btn-outline:hover {
    background-color: #994795;
    color: white;
}

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e6d9e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(153, 71, 149, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #994795;
    margin: 0;
}

/* =========================================================================
   Navigation
   ========================================================================= */

.main-navigation {
    display: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: #994795;
    border-bottom-color: #994795;
    text-decoration: none;
}

.menu-toggle {
    background: none;
    border: 2px solid #994795;
    color: #994795;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background-color: #994795;
    color: white;
}

/* =========================================================================
   Main Content
   ========================================================================= */

.site-main {
    min-height: 60vh;
    padding: 2rem 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e6d9e5;
    padding: 2rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-text {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #994795;
}

/* =========================================================================
   Forms
   ========================================================================= */

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e6d9e5;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #994795;
    box-shadow: 0 0 0 3px rgba(153, 71, 149, 0.1);
}

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

/* =========================================================================
   Utility Classes
   ========================================================================= */

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================================
   Responsive Design
   ========================================================================= */

@media (min-width: 768px) {
    .main-navigation {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .site-title {
        font-size: 1.75rem;
    }
    
    .site-logo img {
        height: 50px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .header-container,
    .content-container,
    .footer-container {
        padding: 0 2rem;
    }
    
    .site-main {
        padding: 3rem 0;
    }
    
    .site-footer {
        padding: 3rem 0 2rem 0;
    }
}

/* =========================================================================
   WordPress Core Styles
   ========================================================================= */

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

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

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

.gallery-caption {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* =========================================================================
   Print Styles
   ========================================================================= */

@media print {
    .site-header,
    .site-footer,
    .menu-toggle,
    .main-navigation {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
}

/* =========================================================================
   Header Styles - Modern & Responsive
   ========================================================================= */

/* Header Container */
.site-header {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-bottom: 1px solid #e6d9e5;
    box-shadow: 0 2px 12px rgba(153, 71, 149, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(153, 71, 149, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

/* Logo & Branding */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 45px;
    width: auto;
    transition: height 0.3s ease;
}

.site-title-wrapper {
    display: flex;
    flex-direction: column;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-title a {
    color: #994795;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-title a:hover {
    color: #7a3a77;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop Menu */
.nav-menu-wrapper {
    display: none;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .current-menu-item > a {
    color: #994795;
    border-bottom-color: #994795;
}

/* Dropdown Menus */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e6d9e5;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    display: block;
    font-size: 0.9rem;
}

.nav-menu .sub-menu a:hover {
    background-color: #faf9fb;
    color: #994795;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid #994795;
    color: #994795;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: #994795;
    color: white;
}

.menu-toggle.active {
    background-color: #994795;
    color: white;
}

/* Hamburger Animation */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA Button */
.header-cta {
    display: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white!important;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(153, 71, 149, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.4);
    color: white;
    text-decoration: none;
}

.cta-icon {
    font-size: 1rem;
}

.header-cta .cta-icon {
	padding:0 0 0 10px;
}
.header-cta .cta-text {
	padding:0 20px 0 0;
}

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

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

.mobile-nav-content {
    position: absolute;
    top: 70px;
    right: 0;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item > a {
    color: #994795;
}

.mobile-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Header Spacer */
.header-spacer {
    height: 70px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 999999;
    background: #994795;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    left: 1rem;
}

/* =========================================================================
   Tablet Styles (768px+)
   ========================================================================= */
@media (min-width: 768px) {
    .header-container {
        padding: 0 2rem;
        min-height: 80px;
    }
    
    .site-logo img {
        height: 50px;
    }
    
    .site-title {
        font-size: 1.75rem;
    }
    
    .nav-menu-wrapper {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .header-cta {
        display: block;
    }
    
    .header-spacer {
        height: 80px;
    }
    
    .mobile-nav-overlay {
        display: none;
    }
}

/* =========================================================================
   Desktop Styles (1024px+)
   ========================================================================= */
@media (min-width: 1024px) {
    .header-container {
        min-height: 90px;
    }
    
    .site-logo img {
        height: 55px;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .header-spacer {
        height: 90px;
    }
}

/* =========================================================================
   Large Desktop Styles (1200px+)
   ========================================================================= */
@media (min-width: 1200px) {
    .header-container {
        padding: 0 3rem;
    }
    
    .nav-menu {
        gap: 3rem;
    }
}

/* =========================================================================
   Accessibility & Focus States
   ========================================================================= */
.nav-menu a:focus,
.menu-toggle:focus,
.cta-button:focus {
    outline: 2px solid #994795;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .site-header,
    .nav-menu a,
    .menu-toggle,
    .cta-button,
    .mobile-nav-overlay,
    .mobile-nav-content,
    .hamburger-line {
        transition: none;
    }
}

/* =========================================================================
   DIENSTLEISTER DETAILSEITE STYLES - hochzeit24.bayern
   Premium-Design mit Hero-Section, Content-Grid und Sidebar
   ========================================================================= */

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.dienstleister-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
/* background: linear-gradient(135deg, #994795 0%, #b85bb3 100%); */
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(153, 71, 149, 0.8) 0%, rgba(184, 91, 179, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-logo.fallback {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.hero-logo.fallback img {
    filter: brightness(0) invert(1);
}

.hero-text {
    flex: 1;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.premium-badge.badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.premium-badge.badge-silber {
    background: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 100%);
    color: #333;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.hero-btn.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #994795;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.btn-primary:hover {
    background: white;
    color: #7a3a77;
}

.hero-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-btn.btn-whatsapp {
    background: #25D366;
    color: white;
}

.hero-btn.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.hero-btn .btn-icon {
    font-size: 1.2em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

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

/* =========================================================================
   MAIN CONTENT GRID
   ========================================================================= */

.content-wrapper {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.main-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================================================
   CONTENT SECTIONS
   ========================================================================= */

.content-section {
    margin-bottom: 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    position: relative;
	font-family: "Indie Flower", cursive;
  	font-style: normal;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.section-content h3 {
    color: #994795;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.section-content li {
    margin: 0.5rem 0;
}

.section-content strong {
    color: #333;
}

/* =========================================================================
   BILDERGALERIE
   ========================================================================= */

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.video-player {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* =========================================================================
   KONTAKTFORMULAR
   ========================================================================= */

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #994795;
    box-shadow: 0 0 0 3px rgba(153, 71, 149, 0.1);
}

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

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-text a {
    color: #994795;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 71, 149, 0.4);
}

.btn-submit .btn-icon {
    font-size: 1.2em;
}

/* =========================================================================
   SIDEBAR
   ========================================================================= */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
	color:white;
}

.card-content {
    padding: 2rem;
}

/* =========================================================================
   KONTAKT-CARD
   ========================================================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    font-size: 1.3em;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

.contact-value a {
    color: #994795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.card-actions {
    padding: 0 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.action-btn.btn-call {
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.3);
	text-decoration:none;
}


.action-btn.btn-whatsapp {
    background: #25D366;
    color: white;
	transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-btn.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

/* =========================================================================
   ÖFFNUNGSZEITEN-CARD
   ========================================================================= */

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.hours-time {
    font-size: 0.95rem;
    color: #666;
}

.hours-time .closed {
    color: #dc3545;
    font-style: italic;
}

/* =========================================================================
   SOCIAL MEDIA CARD
   ========================================================================= */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-link:hover {
    transform: translateX(5px);
    text-decoration: none;
}

.social-link.facebook {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.2);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram {
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.2);
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.social-link.linkedin {
    color: #0A66C2;
    border-color: rgba(10, 102, 194, 0.2);
}

.social-link.linkedin:hover {
    background: rgba(10, 102, 194, 0.1);
}

.social-link.xing {
    color: #026466;
    border-color: rgba(2, 100, 102, 0.2);
}

.social-link.xing:hover {
    background: rgba(2, 100, 102, 0.1);
}

.social-link.tiktok {
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.1);
}

.social-icon {
    font-size: 1.3em;
    width: 24px;
    text-align: center;
}

.social-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* =========================================================================
   KARTEN-CARD
   ========================================================================= */

.map-container {
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed #dee2e6;
}

.map-placeholder:hover {
    background: #e9ecef;
    border-color: #994795;
}

.map-placeholder-content {
    text-align: center;
    color: #666;
}

.map-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-text {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.3);
}

.btn-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 71, 149, 0.4);
    color: white;
    text-decoration: none;
}

/* =========================================================================
   BREADCRUMB
   ========================================================================= */

.breadcrumb-wrapper {
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.75rem;
    color: #666;
    font-size: 1.1em;
}

.breadcrumb-item a {
    color: #994795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.breadcrumb-item.current span {
    color: #666;
    font-weight: 600;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Tablet */
@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr 350px;
        gap: 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-actions {
        flex-direction: row;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .dienstleister-hero {
        min-height: 80vh;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr 400px;
        gap: 5rem;
    }
    
    .main-content {
        padding: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-iframe {
        height: 500px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 450px;
        gap: 6rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Mobile Optimierungen */
@media (max-width: 767px) {
    .dienstleister-hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .content-wrapper {
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .video-iframe {
        height: 250px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-actions {
        padding: 0 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* =========================================================================
   VERBESSERTES DIENSTLEISTER DETAILSEITEN CSS
   Modern, responsive und mit Galerie-Slider
   ========================================================================= */

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.dienstleister-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Fallback Gradient wenn kein Bild */
.dienstleister-hero:not([style*="background-image"]) {
   /* background: linear-gradient(135deg, #994795 0%, #b85bb3 50%, #994795 100%); */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(153, 71, 149, 0.85) 0%,
        rgba(153, 71, 149, 0.7) 50%,
        rgba(153, 71, 149, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
    padding: 3rem 0;
}

.hero-left {
    max-width: 800px;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-logo.fallback img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-silber {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.category-badge a {
    color: white;
    text-decoration: none;
}

.category-badge a:hover {
    text-decoration: underline;
}

/* Hero Text */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 600px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.btn-call {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}


.btn-whatsapp {
    background: rgba(37, 211, 102, 0.9);
    color: white;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: rgba(153, 71, 149, 0.9);
    color: white;
}

.btn-email:hover {
    background: rgba(153, 71, 149, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 71, 149, 0.4);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.arrow-down {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* =========================================================================
   BREADCRUMB NAVIGATION
   ========================================================================= */

.breadcrumb-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 0.75rem;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb a {
    color: #994795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #6c757d;
}

/* =========================================================================
   MAIN CONTENT LAYOUT
   ========================================================================= */

.content-main {
    min-width: 0; /* Verhindert Overflow */
}

.content-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 2rem;
}

/* =========================================================================
   CONTENT SECTIONS
   ========================================================================= */

.content-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #994795;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #994795;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #994795, #b85bb3);
}

.section-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.section-content h3 {
    color: #994795;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.section-content li::marker {
    color: #994795;
}

/* =========================================================================
   BILDERGALERIE SLIDER
   ========================================================================= */

.gallery-slider {
    margin-top: 1.5rem;
}

.gallery-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

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

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(153, 71, 149, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: #994795;
    transform: scale(1.2);
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */

.video-container {
    margin-top: 1.5rem;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-fallback {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    border-radius: 15px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.video-link:hover {
    transform: scale(1.05);
}

.video-icon {
    font-size: 2rem;
}

/* =========================================================================
   KONTAKTFORMULAR
   ========================================================================= */

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

.contact-form {
    max-width: 600px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #994795;
    box-shadow: 0 0 0 3px rgba(153, 71, 149, 0.1);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #994795;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 71, 149, 0.3);
}

/* =========================================================================
   SIDEBAR WIDGETS
   ========================================================================= */

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #994795;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #994795;
}

/* Contact Widget */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-content strong {
    display: block;
    color: #333;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content a {
    color: #994795;
    text-decoration: none;
    word-break: break-word;
}

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

.address-link {
    display: block;
    line-height: 1.4;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn.btn-call {
    background: #994795;
    color: white;
}

.contact-btn.btn-call:hover {
    background: #7a3a77;
    transform: translateY(-1px);
}

.contact-btn.btn-whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.btn-whatsapp:hover {
    background: #20b954;
    transform: translateY(-1px);
}

/* Opening Hours Widget */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #333;
}

.hours-time {
    color: #666;
    font-size: 0.875rem;
}

/* Social Media Widget */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook {
    color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram {
    color: #e4405f;
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.social-link.linkedin {
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.1);
}

.social-link.xing {
    color: #026466;
}

.social-link.xing:hover {
    background: rgba(2, 100, 102, 0.1);
}

.social-link.tiktok {
    color: #000;
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.1);
}

.social-icon {
    font-size: 1.25rem;
}

.social-text {
    font-weight: 600;
}

/* Map Widget */
.map-container {
    margin-top: 1rem;
}

.map-link {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: scale(1.02);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    text-align: center;
}

.map-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-text {
    font-weight: 600;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Large Desktop */
@media (min-width: 1200px) {
   
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.375rem;
    }
    
    .hero-logo img {
        width: 140px;
        height: 140px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    
    
    .sidebar-sticky {
        position: static;
    }
    
    .dienstleister-hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-logo img {
        width: 100px;
        height: 100px;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dienstleister-hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-logo img {
        width: 80px;
        height: 80px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-btn {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-slide img {
        height: 250px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .dienstleister-hero {
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .content-section {
        padding: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .contact-actions {
        flex-direction: row;
    }
    
    .contact-btn {
        flex: 1;
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }
    
    .gallery-slide img {
        height: 200px;
    }
}

/* =========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================= */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        animation: none;
    }
    
    .gallery-track {
        transition: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .content-section,
    .sidebar-widget {
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .dienstleister-hero {
        min-height: auto;
        background: none !important;
        color: black;
        padding: 1rem 0;
    }
    
    .hero-overlay,
    .hero-scroll-indicator,
    .hero-actions,
    .contact-actions,
    .gallery-nav,
    .gallery-dots {
        display: none;
    }
    
    .hero-title,
    .hero-description {
        color: black;
        text-shadow: none;
    }
    
   
    
    .content-section,
    .sidebar-widget {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* DIENSTLEISTER DETAILSEITE - WICHTIGE STYLES */


.content-sidebar {
    display: block !important;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.dienstleister-hero {
    min-height: 500px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

/* =========================================================================
   DIENSTLEISTER DETAILSEITE CSS FIX
   Höhere Spezifität um vorhandenes CSS zu überschreiben
   ========================================================================= */

/* WICHTIG: Dieses CSS am ENDE der style.css einfügen! */

/* =========================================================================
   LAYOUT FIXES - HÖCHSTE PRIORITÄT
   ========================================================================= */

/* Main Layout Grid */


/* Content Main */
.content-main {
    min-width: 0 !important;
}

/* Sidebar */
.content-sidebar {
    display: block !important;
    position: relative !important;
}

.sidebar-sticky {
    position: sticky !important;
    top: 2rem !important;
}

/* =========================================================================
   HERO SECTION FIXES
   ========================================================================= */

.dienstleister-hero {
    position: relative !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
}

/* Fallback Gradient wenn kein Bild */
.dienstleister-hero:not([style*="background-image"]) {
    /* background: linear-gradient(135deg, #994795 0%, #b85bb3 50%, #994795 100%) !important; */
}

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

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    color: white !important;
    padding: 3rem 0 !important;
}

.hero-content .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem !important;
}

.hero-logo img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.hero-logo.fallback img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
}

/* Hero Badges */
.hero-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.premium-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.badge-silber {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4) !important;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-size: 0.875rem !important;
    backdrop-filter: blur(10px) !important;
}

.category-badge a {
    color: white !important;
    text-decoration: none !important;
}

/* Hero Text */
.hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.1 !important;
    color: white !important;
}

.hero-description {
    font-size: 1.25rem !important;
    margin: 0 0 2rem 0 !important;
    opacity: 0.95 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.4 !important;
    max-width: 600px !important;
    color: white !important;
}

/* Hero Actions */
.hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid transparent !important;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.9) !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-email {
    background: rgba(153, 71, 149, 0.9) !important;
    color: white !important;
}

.btn-email:hover {
    background: rgba(153, 71, 149, 1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(153, 71, 149, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

/* =========================================================================
   CONTENT SECTIONS
   ========================================================================= */

.content-section {
    margin-bottom: 3rem !important;
    background: white !important;
    border-radius: 15px !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #f0f0f0 !important;
}

.section-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #994795 !important;
    margin: 0 0 1.5rem 0 !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid #994795 !important;
    position: relative !important;
}

.section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #994795, #b85bb3) !important;
}

/* =========================================================================
   SIDEBAR WIDGETS
   ========================================================================= */

.sidebar-widget {
    background: white !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #f0f0f0 !important;
}

.widget-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #994795 !important;
    margin: 0 0 1.5rem 0 !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid #994795 !important;
}

/* Contact Info */
.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.contact-item:last-child {
    margin-bottom: 0 !important;
}

.contact-icon {
    font-size: 1.25rem !important;
    width: 24px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    margin-top: 0.125rem !important;
}

.contact-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.contact-content strong {
    display: block !important;
    color: #333 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.25rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.contact-content a {
    color: #994795 !important;
    text-decoration: none !important;
    word-break: break-word !important;
}

.contact-content a:hover {
    text-decoration: underline !important;
    color: #7a3a77 !important;
}

/* Contact Actions */
.contact-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
}

.contact-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.contact-btn.btn-call {
    background: #994795 !important;
    color: white !important;
}

.contact-btn.btn-call:hover {
    background: #7a3a77 !important;
    transform: translateY(-1px) !important;
    color: white !important;
    text-decoration: none !important;
}

.contact-btn.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
}

.contact-btn.btn-whatsapp:hover {
    background: #20b954 !important;
    transform: translateY(-1px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Opening Hours */
.opening-hours {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.hours-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.hours-row:last-child {
    border-bottom: none !important;
}

.hours-day {
    font-weight: 600 !important;
    color: #333 !important;
}

.hours-time {
    color: #666 !important;
    font-size: 0.875rem !important;
}

/* =========================================================================
   GALERIE SLIDER
   ========================================================================= */

.gallery-container {
    position: relative !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    margin-top: 1.5rem !important;
}

.gallery-track {
    display: flex !important;
    transition: transform 0.5s ease !important;
}

.gallery-slide {
    min-width: 100% !important;
    position: relative !important;
}

.gallery-slide img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.gallery-prev {
    left: 1rem !important;
}

.gallery-next {
    right: 1rem !important;
}

/* Gallery Dots */
.gallery-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 1.5rem !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.gallery-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(153, 71, 149, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: #994795 !important;
    transform: scale(1.2) !important;
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */

.video-container {
    margin-top: 1.5rem !important;
}

.video-responsive {
    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    height: 0 !important;
    overflow: hidden !important;
    border-radius: 15px !important;
}

.video-responsive iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 15px !important;
    border: none !important;
}

/* =========================================================================
   BREADCRUMB
   ========================================================================= */

.breadcrumb-nav {
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 1rem 0 !important;
}

.breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.875rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.breadcrumb li {
    display: flex !important;
    align-items: center !important;
}

.breadcrumb li:not(:last-child)::after {
    content: '›' !important;
    margin: 0 0.75rem !important;
    color: #6c757d !important;
    font-weight: bold !important;
}

.breadcrumb a {
    color: #994795 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.breadcrumb a:hover {
    color: #7a3a77 !important;
    text-decoration: underline !important;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Tablet */
@media (max-width: 1024px) {
   
    
    .sidebar-sticky {
        position: static !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-logo img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dienstleister-hero {
        min-height: 400px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-logo img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
    }
    
    .hero-btn {
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .content-section {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .sidebar-widget {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .gallery-slide img {
        height: 250px !important;
    }
    
    .contact-actions {
        flex-direction: row !important;
    }
    
    .contact-btn {
        flex: 1 !important;
        font-size: 0.875rem !important;
        padding: 0.625rem 0.75rem !important;
    }
}

/* Mobile Menu Fix - Make both .active and .toggled work */
@media (max-width: 767px) {
    
    /* Hide desktop menu on mobile */
    .main-navigation .nav-menu-wrapper {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 9999;
        position: relative;
    }
    
    /* Hamburger styling */
    .hamburger {
        display: flex;
        flex-direction: column;
        width: 24px;
        height: 18px;
        justify-content: space-between;
    }
    
    .hamburger-line {
        width: 100%;
        height: 2px;
        background: #333;
        transition: all 0.3s ease;
    }
    
    /* Active state for hamburger */
    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    /* Show overlay when active */
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu content */
    .mobile-nav-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: white;
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    /* Show menu content when active */
    .mobile-nav-overlay.active .mobile-nav-content {
        transform: translateX(0);
    }
    
    /* Mobile menu items */
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-menu .menu-item {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-nav-menu .menu-item a {
        display: block;
        padding: 15px 0;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
    }
    
    .mobile-nav-menu .menu-item a:hover {
        color: #994795;
    }
    
    /* Mobile CTA button */
    .mobile-cta {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .mobile-cta-button {
        display: block;
        background: #994795;
        color: white;
        padding: 15px 20px;
        border-radius: 8px;
        text-decoration: none;
        text-align: center;
        font-weight: 600;
    }
    
    /* FALLBACK: Support for .toggled class too */
    .main-navigation.toggled .nav-menu-wrapper {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 9998;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    .main-navigation.toggled .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .main-navigation.toggled .nav-menu .menu-item {
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation.toggled .nav-menu .menu-item a {
        display: block;
        padding: 15px 0;
        color: #333;
        text-decoration: none;
        font-size: 16px;
    }
}

/* =========================================================================
   FOOTER STYLES - Mobile First
   Professioneller Footer für Hochzeitsportal
   ========================================================================= */

.site-footer {
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%);
    color: #f5f5f5;
    margin-top: 4rem;
}

/* =========================================================================
   FOOTER MAIN CONTENT
   ========================================================================= */

.footer-main {
    padding: 3rem 0 2rem 0;
}

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

/* Footer Sections */
.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #994795;
    margin: 0 0 1rem 0;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #994795;
    margin: 0.5rem auto 0 auto;
}

/* =========================================================================
   FOOTER ABOUT SECTION
   ========================================================================= */

.footer-about {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #994795;
    margin: 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 1rem 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(153, 71, 149, 0.2);
    color: #994795;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #994795;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* =========================================================================
   FOOTER MENUS
   ========================================================================= */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a:hover {
    color: #994795;
    text-decoration: none;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #994795;
    transition: width 0.3s ease;
}

.footer-menu a:hover::before {
    width: 100%;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem!important;
	padding:0!important;
    font-size: 0.9rem;
}

.contact-item i {
    color: #994795;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #994795;
    text-decoration: none;
}

/* =========================================================================
   NEWSLETTER SECTION
   ========================================================================= */

.newsletter-signup {
    background: rgba(153, 71, 149, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(153, 71, 149, 0.2);
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #994795;
    margin: 0 0 0.5rem 0;
}

.newsletter-text {
    font-size: 0.85rem;
    color: #d0d0d0;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(153, 71, 149, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 0.9rem;
}

.newsletter-input-group input::placeholder {
    color: #b0b0b0;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #994795;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: #994795;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    background: #7a3a77;
}

/* =========================================================================
   FOOTER BOTTOM
   ========================================================================= */

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(153, 71, 149, 0.2);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.legal-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.legal-menu a:hover {
    color: #994795;
    text-decoration: none;
}

/* =========================================================================
   RESPONSIVE DESIGN - TABLET (768px+)
   ========================================================================= */

@media (min-width: 768px) {
    .footer-main {
        padding: 4rem 0 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-title::after {
        margin: 0.5rem 0 0 0;
    }
    
    .footer-logo {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .footer-logo-img {
        margin-bottom: 0;
    }
    
    .footer-description {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .newsletter-input-group {
        max-width: 300px;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .legal-menu {
        justify-content: flex-end;
    }
}

/* =========================================================================
   RESPONSIVE DESIGN - DESKTOP (1024px+)
   ========================================================================= */

@media (min-width: 1024px) {
    .footer-main {
        padding: 5rem 0 4rem 0;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
    
    .footer-description {
        max-width: 350px;
    }
    
    .newsletter-input-group {
        max-width: 280px;
    }
}

/* =========================================================================
   LARGE DESKTOP (1200px+)
   ========================================================================= */

@media (min-width: 1200px) {
    .footer-content {
        gap: 5rem;
    }
    
    .footer-description {
        font-size: 1rem;
    }
    
    .footer-menu a {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}


