/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farben - Aktualisierte Farbpalette */
    --primary-color: #252422;      /* Eerie black - Hauptfarbe für Text und wichtige Elemente */
    --secondary-color: #6B705C;    /* Reseda green - Sekundäre Akzentfarbe */
    --accent-color: #EB5E28;       /* Flame - Kräftiges Orange für Akzente */
    --text-dark: #252422;          /* Eerie black für dunklen Text */
    --text-light: #6B705C;         /* Reseda green für helleren Text */
    --bg-light: #F5F2ED;           /* Sanfter cremiger Hintergrund - augenfreundlicher */
    --bg-white: #F5F2ED;           /* Sanftes Creme statt reines Weiß */
    --bg-beige: #A99985;           /* Khaki - Mittlerer Beige-Ton */
    --border-color: #A99985;       /* Khaki für Rahmen */
    
    /* Alte Variablen für Kompatibilität */
    --primary: #252422;            /* Alias für primary-color */
    --text: #252422;               /* Alias für text-dark */
    --primary-dark: #1a1918;       /* Noch dunklere Variante von Eerie black */
    --text-gray: #6B705C;
    
    /* Schriftarten - Ruhelotsen Corporate Design mit Abel */
    --font-heading: 'Abel', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-body: 'Abel', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    
    /* Schatten */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Abstände */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; font-weight: 200; }
h2 { font-size: 2rem; font-weight: 300; }
h3 { font-size: 1.75rem; font-weight: 300; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px; /* Kompakteres Layout wie im Kundencenter */
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d54515;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.header-main {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 1rem;
}

.phone-box i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.phone-number:hover {
    color: var(--accent-color);
}

.contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-bar span {
    margin: 0 15px;
}

.contact-bar i {
    margin-right: 5px;
    color: white;
    opacity: 0.9;
}

/* Service Icons in Header */
.service-icons {
    display: flex;
    gap: 0.85rem; /* Optimaler Abstand für Premium-Look */
    align-items: center;
}

.service-icon {
    color: #6b705c !important; /* Warmes Grün-Grau */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important; /* Runde Icons */
    background: #f5f3ee !important; /* Heller cremiger Hintergrund */
    border: 2px solid transparent !important; /* Unsichtbarer Rahmen für Hover */
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important; /* Sanfter Schatten */
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(107, 112, 92, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.service-icon i {
    font-size: 1.15rem; /* Optimale Größe */
    font-weight: 400; /* Normal für bessere Sichtbarkeit */
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font Awesome Icons in Service Icons (Header) */
.service-icon i[class*="fa-"] {
    font-size: 18px !important;
    color: #6b705c !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-icon:hover {
    background: #FF8C42 !important; /* Helles freundliches Orange für alle Icons */
    border-color: #FF8C42 !important;
    transform: translateY(-2px) scale(1.05) !important; /* Leicht nach oben und größer */
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.25) !important;
}

.service-icon:hover::before {
    width: 100px;
    height: 100px;
}

.service-icon:hover i {
    color: white; /* Weiße Icons auf dunklem Hintergrund */
    transform: scale(1.1);
}

.service-icon:hover i[class*="fa-"] {
    color: white;
}


/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--secondary-color) 100%);
    padding: 3px 0;
    border-top: 1px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Meinungen Button Special Styling - Nur Desktop (nicht im Mobile Menü) */
@media (min-width: 769px) {
    /* Nur für Desktop-Navigation, nicht für Mobile-Menü */
    .navbar:not(.mobile-active) .nav-link.btn-meinungen {
        background: var(--accent-color);
        padding: 10px 18px !important;
        border-radius: 22px;
        margin: 4px 10px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .navbar:not(.mobile-active) .nav-link.btn-meinungen:hover {
        background: #c8490f;
        transform: scale(1.02);
    }
}



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

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

/* Mobile Logo in Navbar - standardmäßig versteckt */
.mobile-logo {
    display: none;
}

/* Mobile Telefon - standardmäßig versteckt */
.mobile-phone {
    display: none;
}

/* Mobile Menu Icons - standardmäßig auf Desktop versteckt */
.mobile-menu-icons {
    display: none !important;
}

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

.logo img {
    height: 75px;
    width: auto;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

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

.nav-item {
    position: relative;
    margin: 0;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.15);
    color: white;
}

.nav-item:last-child .nav-link {
    border-right: none;
}

.nav-item.active .nav-link {
    background-color: rgba(0,0,0,0.2);
    color: white;
    font-weight: 600;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Meinungen Button */
/* ENTFERNT - Doppelte Definition verursachte Konflikte mit .nav-link.btn-meinungen */

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

/* Span-Elemente als Dropdown-Trigger klickbar machen */
.has-dropdown > span.nav-link {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(107, 112, 92, 0.98);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

@media (min-width: 769px) {
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    border-left-color: var(--accent-color);
    padding-left: 23px;
}

/* Mobile Menu Toggle - Drei Striche - NUR auf Mobile */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002 !important;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 18px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 26px;
}

/* Hamburger-Menü Animation: 3 Striche verwandeln sich in X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
    visibility: hidden !important;
    display: none !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
}

/* ===== PAGE NAVIGATION LINKS ===== */
.page-nav-links {
    margin-top: 15px;
    font-size: 1.1rem;
}

.page-nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.12), rgba(107, 112, 92, 0.08));
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-nav-links a:hover {
    background: linear-gradient(135deg, var(--accent-color), #c8490f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 77, 25, 0.3);
    border-color: var(--accent-color);
}

.page-nav-links a:active {
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    max-height: 580px;
    overflow: hidden;
    margin-top: 118px; /* Platz für Header mit integrierter Navigation */
    z-index: 1; /* Niedriger als Cookie-Banner */
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1; /* Niedriger als Cookie-Banner */
}

/* Hero Loading State */
.hero-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6b705c 0%, #8b9175 50%, #a5a58d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* WICHTIG: Niedriger als Header (1000), damit Header-Dropdowns funktionieren */
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content p {
    font-size: 0.9rem;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Blumen-Ladeanimation */
.flower-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    animation: rotate 4s linear infinite;
}

/* Blumenzentrum */
.flower-center {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Blütenblätter */
.petal {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-radius: 50% 50% 50% 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 100%;
    animation: petalOpen 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Positionierung der einzelnen Blütenblätter */
.petal-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateX(0px);
    animation-delay: 0s;
}

.petal-2 {
    transform: translate(-50%, -50%) rotate(60deg) translateX(0px);
    animation-delay: 0.2s;
}

.petal-3 {
    transform: translate(-50%, -50%) rotate(120deg) translateX(0px);
    animation-delay: 0.4s;
}

.petal-4 {
    transform: translate(-50%, -50%) rotate(180deg) translateX(0px);
    animation-delay: 0.6s;
}

.petal-5 {
    transform: translate(-50%, -50%) rotate(240deg) translateX(0px);
    animation-delay: 0.8s;
}

.petal-6 {
    transform: translate(-50%, -50%) rotate(300deg) translateX(0px);
    animation-delay: 1s;
}

/* Animation: Blütenblätter öffnen sich */
@keyframes petalOpen {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) translateX(0px) scale(0.3);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) translateX(20px) scale(1);
        opacity: 1;
    }
}

/* Blume rotiert sanft */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Zentrum pulsiert */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Anpassungen für jedes Blütenblatt */
.petal-1 { --rotation: 0deg; }
.petal-2 { --rotation: 60deg; }
.petal-3 { --rotation: 120deg; }
.petal-4 { --rotation: 180deg; }
.petal-5 { --rotation: 240deg; }
.petal-6 { --rotation: 300deg; }

/* ========================================
   TEXT LOADING ANIMATION - MOTTO ✨
   ======================================== */

.text-loader {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: -150px;
}

.loading-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    animation: titleFadeIn 2s ease-in-out infinite;
}

.loading-title sup {
    font-size: 1.1rem;
    margin-left: 2px;
}

.loading-motto {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    position: relative;
    animation: mottoFadeIn 2s ease-in-out infinite 0.3s;
}

.loading-motto::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: lineGrow 2s ease-in-out infinite 0.3s;
}

@keyframes titleFadeIn {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes mottoFadeIn {
    0%, 100% {
        opacity: 0.6;
        letter-spacing: 1px;
    }
    50% {
        opacity: 1;
        letter-spacing: 1.5px;
    }
}

@keyframes lineGrow {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 60%;
        opacity: 1;
    }
}

/* Responsive Text-Animation für Mobile */
/* HAMBURGER X-ANIMATION - GLOBALE REGEL MIT HÖCHSTER PRIORITÄT */
@media screen and (max-width: 768px) {
    button.mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
        top: 10px !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
        visibility: hidden !important;
        top: 18px !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
        top: 26px !important;
    }
}

@media screen and (max-width: 480px) {
    button.mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
        top: 10px !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
        visibility: hidden !important;
        top: 18px !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
        top: 26px !important;
    }
}

@media (max-width: 768px) {
    .text-loader {
        margin-top: -120px;
    }
    
    .loading-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .loading-title sup {
        font-size: 1rem;
    }
    
    .loading-motto {
        font-family: 'Dancing Script', cursive;
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 1px;
    }
    
    @keyframes mottoFadeIn {
        0%, 100% {
            opacity: 0.6;
            letter-spacing: 1.5px;
        }
        50% {
            opacity: 1;
            letter-spacing: 2px;
        }
    }
}

@media (max-width: 480px) {
    .text-loader {
        margin-top: -90px;
    }
    
    .loading-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .loading-title sup {
        font-size: 0.85rem;
    }
    
    .loading-motto {
        font-family: 'Dancing Script', cursive;
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 1px;
    }
    
    @keyframes mottoFadeIn {
        0%, 100% {
            opacity: 0.6;
            letter-spacing: 1px;
        }
        50% {
            opacity: 1;
            letter-spacing: 1.5px;
        }
    }
}

/* ========================================
   FLIEGENDE TAUBE - FRIEDEN 🕊️
   ======================================== */

.dove-loader {
    width: 100px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dove-body {
    width: 30px;
    height: 35px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    z-index: 3;
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.8),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.dove-body::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 50% 50% 50% 20%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.dove-body::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 6px;
    background: #FFD700;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.dove-wing {
    position: absolute;
    width: 45px;
    height: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.9));
    border-radius: 50% 50% 40% 50%;
    top: 50%;
    z-index: 2;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.1);
}

.dove-wing-left {
    left: 0;
    transform-origin: right center;
    animation: flapLeft 0.6s ease-in-out infinite;
}

.dove-wing-right {
    right: 0;
    transform-origin: left center;
    transform: scaleX(-1);
    animation: flapRight 0.6s ease-in-out infinite;
}

@keyframes flapLeft {
    0%, 100% {
        transform: translateY(-50%) rotateZ(-10deg);
    }
    50% {
        transform: translateY(-50%) rotateZ(-35deg);
    }
}

@keyframes flapRight {
    0%, 100% {
        transform: scaleX(-1) translateY(-50%) rotateZ(-10deg);
    }
    50% {
        transform: scaleX(-1) translateY(-50%) rotateZ(-35deg);
    }
}

/* Responsive Tauben-Animation für Mobile */
@media (max-width: 768px) {
    .dove-loader {
        width: 90px;
        height: 70px;
    }
    
    .dove-body {
        width: 26px;
        height: 30px;
    }
    
    .dove-body::before {
        width: 10px;
        height: 13px;
    }
    
    .dove-wing {
        width: 40px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .dove-loader {
        width: 80px;
        height: 60px;
    }
    
    .dove-body {
        width: 22px;
        height: 26px;
    }
    
    .dove-body::before {
        width: 9px;
        height: 11px;
    }
    
    .dove-wing {
        width: 35px;
        height: 19px;
    }
}

/* ========================================
   BAUM-ANIMATION - WACHSEND 🌳
   ======================================== */

.tree-loader {
    width: 100px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.tree-trunk {
    width: 20px;
    height: 40px;
    background: linear-gradient(to right, #8B4513, #A0522D, #8B4513);
    border-radius: 4px 4px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 
        inset -2px 0 5px rgba(0, 0, 0, 0.3),
        inset 2px 0 5px rgba(139, 69, 19, 0.3);
}

.tree-crown {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6B705C, #8B9175);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 
        0 0 30px rgba(107, 112, 92, 0.6),
        inset 0 -10px 20px rgba(0, 0, 0, 0.2);
    animation: treeGrow 2s ease-in-out infinite;
}

.tree-crown::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B9175, #A5A58D);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

.tree-crown::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #A5A58D, #B7B894);
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.3);
}

@keyframes treeGrow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

/* Responsive Baum-Animation für Mobile */
@media (max-width: 768px) {
    .tree-loader {
        width: 80px;
        height: 100px;
    }
    
    .tree-trunk {
        width: 16px;
        height: 35px;
    }
    
    .tree-crown {
        width: 60px;
        height: 60px;
    }
    
    .tree-crown::before {
        width: 42px;
        height: 42px;
    }
    
    .tree-crown::after {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .tree-loader {
        width: 70px;
        height: 90px;
    }
    
    .tree-trunk {
        width: 14px;
        height: 30px;
    }
    
    .tree-crown {
        width: 50px;
        height: 50px;
    }
    
    .tree-crown::before {
        width: 35px;
        height: 35px;
    }
    
    .tree-crown::after {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   BLUME ÖFFNET SICH - ELEGANT 🌸
   ======================================== */

.bloom-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloom-center {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 10px rgba(255, 165, 0, 0.4);
    animation: centerGlow 3s ease-in-out infinite;
}

.bloom-petal {
    position: absolute;
    width: 30px;
    height: 45px;
    background: linear-gradient(to top, #EB5E28, #FF8A50);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 50%;
    left: 50%;
    transform-origin: center 80%;
    box-shadow: 
        0 0 20px rgba(235, 94, 40, 0.6),
        inset 0 0 10px rgba(255, 138, 80, 0.3);
    animation: petalBloom 3s ease-in-out infinite;
}

.bloom-petal-1 {
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.bloom-petal-2 {
    transform: translate(-50%, -50%) rotate(60deg);
    animation-delay: 0.1s;
}

.bloom-petal-3 {
    transform: translate(-50%, -50%) rotate(120deg);
    animation-delay: 0.2s;
}

.bloom-petal-4 {
    transform: translate(-50%, -50%) rotate(180deg);
    animation-delay: 0.3s;
}

.bloom-petal-5 {
    transform: translate(-50%, -50%) rotate(240deg);
    animation-delay: 0.4s;
}

.bloom-petal-6 {
    transform: translate(-50%, -50%) rotate(300deg);
    animation-delay: 0.5s;
}

@keyframes petalBloom {
    0% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.3);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.3);
        opacity: 0.3;
    }
}

@keyframes centerGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 10px rgba(255, 165, 0, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 165, 0, 0.6);
    }
}

/* Rotation für jedes Blütenblatt */
.bloom-petal-1 { --rotation: 0deg; }
.bloom-petal-2 { --rotation: 60deg; }
.bloom-petal-3 { --rotation: 120deg; }
.bloom-petal-4 { --rotation: 180deg; }
.bloom-petal-5 { --rotation: 240deg; }
.bloom-petal-6 { --rotation: 300deg; }

/* Responsive Blumen-Animation für Mobile */
@media (max-width: 768px) {
    .bloom-loader {
        width: 80px;
        height: 80px;
    }
    
    .bloom-center {
        width: 16px;
        height: 16px;
    }
    
    .bloom-petal {
        width: 20px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .bloom-loader {
        width: 60px;
        height: 60px;
    }
    
    .bloom-center {
        width: 12px;
        height: 12px;
    }
    
    .bloom-petal {
        width: 16px;
        height: 26px;
    }
}

/* ========================================
   DREI PULSIERENDE PUNKTE - CLEAN & MODERN
   ======================================== */

.dots-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 60px;
}

.dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #EB5E28, #FF8A50);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(235, 94, 40, 0.8),
        0 0 40px rgba(235, 94, 40, 0.5);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Responsive Punkte-Animation für Mobile */
@media (max-width: 768px) {
    .dots-loader {
        gap: 15px;
        height: 60px;
    }
    
    .dot {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .dots-loader {
        gap: 12px;
        height: 50px;
    }
    
    .dot {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   HERZ-LADEANIMATION MIT PULS ❤️
   ======================================== */

.heart-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart {
    position: relative;
    width: 60px;
    height: 60px;
    animation: heartPulse 1.5s ease-in-out infinite;
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    top: 0;
    width: 32px;
    height: 50px;
    border-radius: 32px 32px 0 0;
    background: linear-gradient(135deg, #EB5E28, #FF8A50);
    box-shadow: 
        0 0 30px rgba(235, 94, 40, 0.8),
        0 0 50px rgba(235, 94, 40, 0.5);
}

.heart::before {
    left: 30px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.15);
    }
}

/* Responsive Herz-Animation für Mobile */
@media (max-width: 768px) {
    .heart-loader {
        width: 80px;
        height: 80px;
    }
    
    .heart {
        width: 50px;
        height: 50px;
    }
    
    .heart::before,
    .heart::after {
        width: 26px;
        height: 42px;
        border-radius: 26px 26px 0 0;
    }
    
    .heart::before {
        left: 24px;
    }
}

@media (max-width: 480px) {
    .heart-loader {
        width: 60px;
        height: 60px;
    }
    
    .heart {
        width: 40px;
        height: 40px;
    }
    
    .heart::before,
    .heart::after {
        width: 21px;
        height: 34px;
        border-radius: 21px 21px 0 0;
    }
    
    .heart::before {
        left: 19px;
    }
}

/* ========================================
   KERZEN-LADEANIMATION 🕯️ (Verbessert)
   ======================================== */

.candle-loader {
    width: 80px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

/* Kerzenkörper */
.candle-body {
    width: 35px;
    height: 70px;
    background: linear-gradient(to right, 
        #e8d5b7 0%, 
        #f5f5dc 20%, 
        #fffaf0 50%, 
        #f5f5dc 80%, 
        #e8d5b7 100%);
    border-radius: 8px 8px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        inset -3px 0 10px rgba(0, 0, 0, 0.15),
        inset 3px 0 10px rgba(255, 255, 255, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Wachs am oberen Rand */
.candle-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
}

/* Docht - jetzt direkt auf der Kerze */
.candle-wick {
    width: 3px;
    height: 12px;
    background: linear-gradient(to bottom, 
        #2a2a2a 0%, 
        #4a4a4a 50%, 
        #6a4a3a 100%);
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    border-radius: 2px 2px 0 0;
}

/* Flamme - mit starker Bewegung */
.candle-flame {
    width: 25px;
    height: 35px;
    background: radial-gradient(ellipse at center bottom, 
        #ffffff 0%, 
        #ffff99 15%, 
        #ffcc00 30%, 
        #ff9900 50%, 
        #ff6600 70%, 
        rgba(255, 50, 0, 0.5) 85%,
        rgba(255, 0, 0, 0) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    bottom: 82px;
    left: 50%;
    transform: translateX(-50%);
    animation: candleFlicker 0.8s ease-in-out infinite;
    filter: blur(0.5px);
    z-index: 3;
}

/* Innere Flamme - heller Kern */
.flame-inner {
    width: 12px;
    height: 18px;
    background: radial-gradient(ellipse at center, 
        #ffffff 0%, 
        #ffffcc 40%, 
        rgba(255, 255, 200, 0.5) 70%,
        rgba(255, 255, 153, 0) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: innerFlicker 0.6s ease-in-out infinite;
}

/* Leuchten um die Kerze - pulsierend */
.candle-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, 
        rgba(255, 220, 150, 0.4) 0%, 
        rgba(255, 180, 80, 0.2) 40%, 
        rgba(255, 120, 40, 0.1) 70%, 
        rgba(255, 100, 0, 0) 100%);
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: glowPulse 1.5s ease-in-out infinite;
    z-index: 1;
}

/* Ultra-realistische Flacker-Animation */
@keyframes candleFlicker {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1) rotate(0deg);
        opacity: 1;
        filter: blur(0.5px) brightness(1);
    }
    8% {
        transform: translateX(-51%) scaleY(0.94) scaleX(1.06) rotate(-1.5deg);
        opacity: 0.96;
        filter: blur(0.6px) brightness(0.95);
    }
    15% {
        transform: translateX(-48%) scaleY(0.89) scaleX(1.11) rotate(-3deg);
        opacity: 0.92;
        filter: blur(0.8px) brightness(0.9);
    }
    23% {
        transform: translateX(-52%) scaleY(1.07) scaleX(0.93) rotate(2deg);
        opacity: 0.97;
        filter: blur(0.4px) brightness(1.05);
    }
    30% {
        transform: translateX(-53%) scaleY(1.12) scaleX(0.88) rotate(4deg);
        opacity: 1;
        filter: blur(0.3px) brightness(1.1);
    }
    38% {
        transform: translateX(-49%) scaleY(0.91) scaleX(1.09) rotate(-2deg);
        opacity: 0.88;
        filter: blur(0.9px) brightness(0.85);
    }
    45% {
        transform: translateX(-47%) scaleY(0.95) scaleX(1.05) rotate(-1deg);
        opacity: 0.94;
        filter: blur(0.7px) brightness(0.92);
    }
    53% {
        transform: translateX(-51%) scaleY(1.09) scaleX(0.91) rotate(3deg);
        opacity: 0.99;
        filter: blur(0.4px) brightness(1.08);
    }
    60% {
        transform: translateX(-52%) scaleY(1.04) scaleX(0.96) rotate(1.5deg);
        opacity: 0.96;
        filter: blur(0.5px) brightness(1);
    }
    68% {
        transform: translateX(-48%) scaleY(0.93) scaleX(1.07) rotate(-2.5deg);
        opacity: 0.9;
        filter: blur(0.8px) brightness(0.88);
    }
    75% {
        transform: translateX(-50%) scaleY(0.97) scaleX(1.03) rotate(-0.5deg);
        opacity: 0.95;
        filter: blur(0.6px) brightness(0.95);
    }
    83% {
        transform: translateX(-49%) scaleY(1.02) scaleX(0.98) rotate(1deg);
        opacity: 0.98;
        filter: blur(0.4px) brightness(1.02);
    }
    90% {
        transform: translateX(-51%) scaleY(0.99) scaleX(1.01) rotate(-0.8deg);
        opacity: 0.94;
        filter: blur(0.7px) brightness(0.94);
    }
    100% {
        transform: translateX(-50%) scaleY(1) scaleX(1) rotate(0deg);
        opacity: 1;
        filter: blur(0.5px) brightness(1);
    }
}

/* Animation für innere Flamme - noch organischer */
@keyframes innerFlicker {
    0% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    12% {
        transform: translateX(-48%) scale(0.92) rotate(-2deg);
        opacity: 0.88;
    }
    25% {
        transform: translateX(-52%) scale(0.88) rotate(3deg);
        opacity: 0.82;
    }
    37% {
        transform: translateX(-49%) scale(1.08) rotate(-1deg);
        opacity: 0.95;
    }
    50% {
        transform: translateX(-51%) scale(1.12) rotate(2deg);
        opacity: 1;
    }
    62% {
        transform: translateX(-50%) scale(0.95) rotate(-1.5deg);
        opacity: 0.9;
    }
    75% {
        transform: translateX(-48%) scale(0.9) rotate(1deg);
        opacity: 0.85;
    }
    87% {
        transform: translateX(-52%) scale(1.05) rotate(-0.5deg);
        opacity: 0.98;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Verbesserte Leucht-Animation */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    25% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.15);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.25);
    }
    75% {
        opacity: 0.65;
        transform: translateX(-50%) scale(1.1);
    }
}

/* ========================================
   BAUM-WACHSTUMS-ANIMATION 🌳
   ======================================== */

.tree-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

/* Baumstamm */
.tree-trunk {
    width: 12px;
    height: 0;
    background: linear-gradient(to right, #6B4423, #8B6F47, #6B4423);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: growTrunk 2s ease-out infinite;
}

/* Äste Container */
.tree-branches {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Einzelne Äste */
.branch {
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #6B4423, #8B6F47);
    position: absolute;
    border-radius: 2px;
}

.branch-1 {
    bottom: 20px;
    left: 0;
    transform-origin: left center;
    transform: rotate(-45deg);
    animation: growBranch 2s ease-out 0.5s infinite;
}

.branch-2 {
    bottom: 20px;
    right: -6px;
    transform-origin: right center;
    transform: rotate(45deg);
    animation: growBranch 2s ease-out 0.6s infinite;
}

.branch-3 {
    bottom: 10px;
    left: 0;
    transform-origin: left center;
    transform: rotate(-30deg);
    animation: growBranch 2s ease-out 0.7s infinite;
}

/* Blätter Container */
.tree-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Einzelne Blätter */
.leaf {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #90EE90, #228B22);
    border-radius: 0 100% 0 100%;
    position: absolute;
    opacity: 0;
    transform: scale(0);
}

.leaf-1 {
    top: 20px;
    left: 30px;
    animation: growLeaf 2s ease-out 1s infinite;
}

.leaf-2 {
    top: 25px;
    right: 30px;
    animation: growLeaf 2s ease-out 1.1s infinite;
}

.leaf-3 {
    top: 15px;
    left: 35px;
    animation: growLeaf 2s ease-out 1.2s infinite;
}

.leaf-4 {
    top: 30px;
    left: 45px;
    animation: growLeaf 2s ease-out 1.3s infinite;
}

.leaf-5 {
    top: 20px;
    right: 35px;
    animation: growLeaf 2s ease-out 1.4s infinite;
}

/* Wachstums-Animationen */
@keyframes growTrunk {
    0% {
        height: 0;
    }
    40%, 100% {
        height: 40px;
    }
}

@keyframes growBranch {
    0%, 40% {
        width: 0;
        opacity: 0;
    }
    60%, 100% {
        width: 25px;
        opacity: 1;
    }
}

@keyframes growLeaf {
    0%, 70% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    85% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 36, 34, 0.0); /* Overlay entfernt für klare Bilder */
}

/* Slide Text Overlay */
.slide-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.slide.active .slide-text-overlay {
    opacity: 1;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Verstecke leere Texte */
.slide-title:empty,
.slide-subtitle:empty {
    display: none;
}

/* Responsive Slide Texte */
@media (max-width: 768px) {
    .slide-text-overlay {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
}

/* Responsive Kerzen-Animation für Mobile */
@media (max-width: 768px) {
    .candle-loader {
        width: 60px;
        height: 90px;
    }
    
    .candle-body {
        width: 28px;
        height: 55px;
    }
    
    .candle-wick {
        width: 2px;
        height: 10px;
        bottom: 55px; /* Direkt über der Kerze */
    }
    
    .candle-flame {
        width: 20px;
        height: 28px;
        bottom: 65px; /* Direkt über dem Docht (55px Kerze + 10px Docht) */
    }
    
    .flame-inner {
        width: 10px;
        height: 14px;
        top: 5px;
    }
    
    .candle-glow {
        width: 80px;
        height: 80px;
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .candle-loader {
        width: 50px;
        height: 75px;
    }
    
    .candle-body {
        width: 24px;
        height: 45px;
    }
    
    .candle-wick {
        width: 2px;
        height: 8px;
        bottom: 45px; /* Direkt über der Kerze */
    }
    
    .candle-flame {
        width: 16px;
        height: 24px;
        bottom: 53px; /* Direkt über dem Docht (45px Kerze + 8px Docht) */
    }
    
    .flame-inner {
        width: 8px;
        height: 12px;
        top: 4px;
    }
    
    .candle-glow {
        width: 60px;
        height: 60px;
        bottom: 25px;
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    width: 100%;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    border-color: white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== NEWS STANDALONE SECTION ===== */
.news-standalone-section {
    padding: 60px 0;
    background: #ffffff;
}

.news-standalone-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.news-standalone-box .section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.news-standalone-box .section-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.news-standalone-box .section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.news-grid .news-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

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

.news-grid .news-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-grid .news-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-grid .news-item .news-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-grid .news-item .news-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.news-grid .news-item .news-link:hover {
    gap: 10px;
}

.news-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #d54515;
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 69, 21, 0.3);
}

/* ===== ABOUT STANDALONE SECTION - Eigenständiger Kasten ===== */
.about-standalone-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-box-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 50px;
    align-items: start;
}

/* Text Spalte */
.about-text-column {
    padding-right: 20px;
}

.about-box-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

/* Titel-Formatierung für Desktop und Mobile */
.about-box-title .title-line-1,
.about-box-title .title-line-2,
.about-box-title .title-dash {
    display: inline;
}

.title-dash {
    display: inline;
}

.about-box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.about-box-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-box-lead {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-box-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.about-box-content h3 {
    color: #8B6F47;
    font-size: 1.3em;
    margin: 25px 0 15px;
    font-weight: 600;
}

/* Inhaber Fotos Spalte */
.owners-photos-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.owner-photo-container {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.owner-photo-container img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* Positioniert den Fokus auf oberen/mittleren Bereich */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block; /* Zeige die echten Bilder */
    margin: 0 auto;
    border: 4px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.owner-photo-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}

/* Hover-Hinweis für Vergrößerung */
.owner-photo-container {
    position: relative;
}

.owner-photo-container::after {
    content: "🔍 Zum Vergrößern klicken";
    position: absolute;
    top: 110px; /* Mitte des runden Bildes */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.owner-photo-container:hover::after {
    opacity: 1;
}

/* Individuelle Anpassungen für jedes Bild */
/* Nutzen Sie diese Klassen, um die Bilder individuell zu positionieren */
.owner-photo-denny {
    /* Beispiel: object-position: center center; */
    /* Sie können hier z.B. center top, center center, etc. verwenden */
}

.owner-photo-niels {
    /* Beispiel: object-position: center 20%; */
    /* Verschiebt den sichtbaren Bereich des Bildes */
}

/* Alternativ können Sie auch die Container individuell verschieben */
#owner-denny {
    /* Beispiel: margin-left: 20px; */
}

#owner-niels {
    /* Beispiel: margin-right: 20px; */
}

/* Platzhalter nicht mehr benötigt - echte Bilder werden verwendet */
.photo-placeholder {
    display: none;
}

/* Modal für Bildvergrößerung */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000001 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.modal-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 10000002 !important;
}

.modal-image {
    max-width: 600px;  /* Maximale Breite begrenzen für Schärfe */
    max-height: 600px; /* Maximale Höhe begrenzen für Schärfe */
    width: auto;
    height: auto;
    object-fit: contain;
    border: 8px solid white;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    z-index: 10000002 !important;
}

.modal-close {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    color: white !important;
    font-size: 40px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    z-index: 10000003 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #E67E22 !important;
    border-radius: 50% !important;
    line-height: 1 !important;
    box-shadow: 0 0 30px rgba(230, 126, 34, 1) !important;
    border: 4px solid white !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-close:hover {
    background-color: #d35400 !important;
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 0 30px rgba(230, 126, 34, 1) !important;
}

.modal-caption {
    position: relative;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 12px 25px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    margin-top: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000002 !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Modal Bilder Responsive Anpassungen */
@media (max-width: 768px) {
    .modal-image {
        max-width: 450px !important;
        max-height: 450px !important;
    }
}

@media (max-width: 480px) {
    .modal-image {
        max-width: 90% !important;
        max-height: 400px !important;
        border: 4px solid white !important;
    }
}

.owner-info {
    margin-top: 20px;
}

.owner-info h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Allura', cursive;
}

.owner-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

/* Box Headers */
.box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.box-header i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.box-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

/* News Content */
.news-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.news-content .news-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.news-content .news-item h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-content .news-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 5px;
}

.box-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.box-link:hover {
    gap: 12px;
    color: #d54515;
}

/* About Content */
.about-content {
    color: var(--text-dark);
}

.about-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 10px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 25px 0;
}

/* Services Grid */
.about-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f8f8f8;
    transform: translateX(5px);
}

.service-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.service-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.about-cta .btn-primary {
    padding: 14px 28px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
    background: #d54515;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 69, 21, 0.3);
}

.about-cta .btn-secondary {
    padding: 14px 28px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}


.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-beige);
}

.card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.card-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* News Bereich */
.news-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: var(--bg-beige);
    transform: translateX(5px);
}

.news-date {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
}

.news-item p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.view-all-news {
    display: inline-block;
    margin-top: 25px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-all-news:hover {
    color: #d54515;
    transform: translateX(5px);
}

/* Über uns Kasten Styles */
.about-container {
    width: 100%;
}

.about-card-content {
    padding: 20px;
}

.about-card-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.about-card-text {
    margin: 20px 0;
}

.about-card-text p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.feature-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-compact:hover {
    background: #f0ede8;
    transform: translateX(5px);
}

.feature-compact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.feature-compact span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Alte Quote-Card Styles - deaktiviert, da wir jetzt das minimalistische Design verwenden */

.quote-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ===== QUICK ACCESS SECTION ===== */
.quick-access {
    background: linear-gradient(135deg, #f5f3ee 0%, #e8e4dc 100%);
    padding: var(--spacing-xl) 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-card {
    background: rgba(255, 255, 255, 0.4); /* Halbtransparenter Hintergrund */
    backdrop-filter: blur(12px) saturate(180%); /* Glassmorphismus Effekt */
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 0.5); /* Mehrschichtige Schatten */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Leicht sichtbarer Glasrand */
    position: relative;
    overflow: hidden;
}

/* Subtiler Glanz-Effekt */
.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quick-card:hover::before {
    left: 100%;
}

.quick-card p {
    color: #333333;
    position: relative;
    z-index: 1;
}

.quick-card h3 {
    color: #2c2c2c;
    position: relative;
    z-index: 1;
}

.quick-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5); /* Etwas stärker beim Hover */
}

.quick-card i {
    font-size: 2.8rem;
    color: #8B6F47; /* Warmer Braunton passend zur Glasästhetik */
    margin-bottom: 30px;
    font-weight: normal;
    transition: all 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.85;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* Sanfter Schatten */
    position: relative;
    z-index: 1;
}

/* Font Awesome Elegant Icons für Quick Cards */
.quick-card .elegant-icon {
    font-size: 48px;
    color: #8B6F47;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    opacity: 0.85;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.quick-card:hover i {
    color: var(--accent-color); /* Orange beim Hover für mehr Lebendigkeit */
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(235, 94, 40, 0.3));
}

.quick-card:hover .elegant-icon {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(235, 94, 40, 0.3));
}

.quick-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.quick-card strong {
    font-size: 1.3rem;
    color: #2c2c2c;
    font-weight: 400;
}

.quick-card a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 5px 0;
}

.quick-card a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateX(3px);
}

/* Quick Access Navigation */
.quick-access-header {
    text-align: center;
    margin-bottom: 40px;
}

.quick-access-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-access-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* Grid display is now handled by JavaScript directly */
.quick-access-grid[data-page] {
    display: none; /* Display controlled via JavaScript */
}

.quick-access-grid.active {
    display: grid !important; /* Active state handled by JavaScript */
}

/* Navigation Arrows */
.quick-access-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.arrow-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.arrow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.arrow-btn:disabled:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1);
    border-color: var(--border-color);
}

/* ===== SECTIONS GENERAL ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #faf9f7 100%);
    position: relative;
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* About Header */
.about-header {
    margin-bottom: 60px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 25px;
    position: relative;
}

.about-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 3px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Content */
.about-main-content {
    margin: 0 auto;
    max-width: 750px;
}

.about-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.about-text-content {
    margin-bottom: 45px;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

/* CTA Button */
.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.2);
    margin-bottom: 60px;
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.about-cta-button i {
    font-size: 0.95rem;
}

/* Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-item:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 400;
}


/* ===== FIRST STEPS SECTION ===== */
.first-steps {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

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

.step-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Erste Reihe: 3 Karten */
.services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }

/* Zweite Reihe: 2 Karten zentriert */
.services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: transparent;
    border: none; /* Kein Rahmen - ultra-minimalistisch */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card .service-icon i {
    font-size: 2.2rem; /* Größer für bessere Präsenz */
    color: #666666; /* Elegantes Grau */
    font-weight: 300; /* Leicht für fas Icons */
    transition: all 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.7; /* Leicht transparent für softeren Look */
}

/* Spezielle Anpassung für far Icons */
.service-card .service-icon .far {
    font-weight: normal; /* Standard für far Icons */
    opacity: 0.8;
}

/* Font Awesome Elegant Icons für Service Cards */
.service-card .elegant-service-icon {
    font-size: 42px;
    color: #666666;
    transition: all 0.4s ease;
    opacity: 0.7;
    display: inline-block;
}

.service-card .service-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #2c2c2c;
    transition: width 0.3s ease;
}

.service-card:hover .service-icon {
    background: transparent; /* Kein Hintergrund */
}

.service-card:hover .service-icon::after {
    width: 30px; /* Linie erscheint unter dem Icon */
}

.service-card:hover .service-icon i {
    color: #2c2c2c;
    opacity: 1; /* Voll sichtbar beim Hover */
    transform: translateY(-3px); /* Leicht nach oben */
}

.service-card:hover .elegant-service-icon {
    color: #2c2c2c;
    opacity: 1;
    transform: translateY(-3px);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

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

/* ===== MEMORIAL SECTION ===== */
.memorial-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #faf9f6 0%, #f5f1e8 50%, #faf9f6 100%);
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.memorial-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.memorial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.memorial-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.memorial-content {
    padding: 25px;
}

.memorial-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.memorial-dates {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.memorial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.memorial-link {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.memorial-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== COSTS SECTION ===== */
.costs-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.costs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cost-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.package-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.costs-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

/* ===== TESTIMONIALS SECTION - ENTFERNT ===== */

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F5F2ED, #E8E4DC);
    color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: var(--spacing-xl);
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--bg-beige);
    margin-bottom: 20px;
}

.footer-column h3 sup {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
}

.footer-column p {
    color: #bbb;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(233,224,206,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-beige);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #bbb;
    margin: 0;
}

.footer-bottom-content p sup {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-bottom-links a {
    color: #bbb;
}

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

/* Adress-Abkürzung */
.address-short {
    display: none;
}

.address-full {
    display: inline;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999990;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Scroll-to-Top verstecken wenn Mobile-Menü geöffnet ist */
body.menu-open .scroll-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.scroll-to-top.show {
    display: flex;
}

/* Mobile Anpassung für Scroll-to-Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px; /* 60px über Musik-Button (der bei 20px ist) */
        right: 20px;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem;
        z-index: 999980 !important; /* Niedriger als Musik-Button (999990) */
    }
    
    .scroll-to-top i {
        font-size: 1.1rem;
    }
    
    .scroll-to-top:hover {
        transform: none;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive für News Standalone & About Standalone */
@media (max-width: 992px) {
    .news-standalone-box {
        padding: 30px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-box-container {
        grid-template-columns: 60% 40%;
        gap: 40px;
        padding: 40px;
    }
    
    .about-box-title {
        font-size: 1.7rem;
    }
    
    .owner-photo-container img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .news-standalone-section {
        padding: 40px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-standalone-section {
        padding: 40px 0;
    }
    
    .about-box-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .about-text-column {
        padding-right: 0;
    }
    
    .about-box-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-box-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile: Titel zweizeilig ohne Bindestrich */
    .about-box-title .title-line-1,
    .about-box-title .title-line-2 {
        display: block !important;
    }
    
    .about-box-title .title-dash {
        display: none !important;
    }
    
    .owners-photos-column {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .owner-photo-container img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .news-standalone-box {
        padding: 20px;
    }
    
    .news-standalone-box .section-header h2 {
        font-size: 1.4rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-grid .news-item {
        padding: 20px;
    }
    
    .btn-view-all {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .about-standalone-section {
        padding: 30px 0;
    }
    
    .about-box-container {
        padding: 25px;
        gap: 25px;
        border-radius: 15px;
    }
    
    .about-box-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .about-box-content {
        font-size: 0.95rem;
    }
    
    .about-box-lead {
        font-size: 1rem;
    }
    
    .owners-photos-column {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .owner-photo-container img {
        width: 170px;
        height: 170px;
    }
    
    .owner-info h4 {
        font-size: 1.3rem;
        font-family: 'Allura', cursive;
    }
    
    .owner-info p {
        font-size: 0.85rem;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000 !important;  /* Unter dem Menü (1003), über normalem Inhalt */
    pointer-events: auto !important; /* Kann geklickt werden um Menü zu schließen */
}

body.menu-open .menu-overlay {
    display: block;
}

/* Verstecke Scroll-to-Top, Music Button und Telefon-Icon wenn Hamburger-Menü offen ist */
body.menu-open .scroll-to-top,
body.menu-open .music-control,
body.menu-open .mobile-phone {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    /* Header Responsive - NUR für echte Mobile Geräte, NICHT für iPad mini */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1001 !important;
        -webkit-position: fixed;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    
    .header-main {
        padding: 8px 0;
        display: none; /* Verstecke kompletten oberen Header-Bereich auf Mobil */
    }
    
    .header-main-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-contact {
        display: none; /* Verstecke Kontakt-Info komplett auf Mobil */
    }
    
    .service-icons {
        display: none; /* Verstecke Service-Icons auf Mobilgeräten */
    }
    
    /* Logo direkt in Navbar auf Mobil */
    .navbar {
        padding: 12px 0;
        position: relative;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .mobile-logo {
        display: flex !important; /* Zeige mobile Logo in Navbar */
        flex-shrink: 0;
        margin-right: auto; /* Logo links */
    }
    
    .mobile-logo img {
        height: 42px;  /* Vergrößert von 35px */
        width: auto;
    }
    
    /* Mobile Telefon-Icon */
    .mobile-phone {
        display: flex !important;
        align-items: center;
        margin-right: 15px;
        position: relative;
        z-index: 1003 !important;
    }
    
    .mobile-phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;  /* Vergrößert von 36px */
        height: 40px;  /* Vergrößert von 36px */
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1003 !important;
    }
    
    .mobile-phone-link:hover,
    .mobile-phone-link:active {
        background: var(--accent-color);
        transform: scale(1.1);
    }
    
    .mobile-phone-link i {
        font-size: 18px;  /* Vergrößert von 16px */
    }
    
    /* Quick Access Responsive */
    .quick-access {
        background: linear-gradient(135deg, #f8f7f5 0%, #ebe7df 100%);
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-card {
        backdrop-filter: blur(10px) saturate(160%);
        -webkit-backdrop-filter: blur(10px) saturate(160%);
        border-radius: 18px;
        padding: 35px 25px;
    }
    
    .quick-access-header h2 {
        font-size: 2rem;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
    }
    
    /* About Section Responsive */
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-heading {
        font-size: 1.7rem;
    }
    
    .about-features {
        gap: 30px;
    }
    
    .about-paragraph {
        font-size: 1rem;
    }
    
    /* Hero - Slideshow auf Mobil ausblenden */
    /* Hero auf Mobile anzeigen */
    .hero {
        display: block !important;
        margin-top: 60px !important;
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-slideshow {
        display: block !important; /* Zeige Slideshow auf Mobile */
    }
    
    .slide {
        display: block !important;
    }
    
    /* Quick Access rückt nach oben ohne Hero */
    .quick-access {
        margin-top: 70px; /* Nur Header-Höhe als Abstand */
        padding-top: 30px;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1004 !important;  /* Über Menü (1003) damit X sichtbar bleibt */
        margin-left: auto;
        padding: 8px;  /* Mehr Padding für bessere Touch-Bedienung */
        background: rgba(0,0,0,0.15);
        border-radius: 8px;
        width: 40px !important;
        height: 40px !important;
        gap: 0 !important;
    }
    
    .mobile-menu-toggle span {
        background-color: white !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3);
        position: absolute !important;
        width: 26px !important;
        height: 3px !important;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        top: 10px !important;
    }
    
    .mobile-menu-toggle span:nth-child(2) {
        top: 18px !important;
    }
    
    .mobile-menu-toggle span:nth-child(3) {
        top: 26px !important;
    }
    
    .navbar {
        position: relative;
        z-index: 1001 !important;
    }
    
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    
    /* Container für Logo und Menü-Button */
    .navbar .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(160deg, #d4c5b0 0%, #c8b9a6 20%, #b8a892 40%, var(--secondary-color) 70%, #9a9485 100%);
        width: 85%;
        max-width: 350px;
        height: 100vh;
        padding: 20px 0 30px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
        z-index: 1003 !important;  /* Über Header (1001) und overlay (1002) */
        align-items: flex-start;
        gap: 0;
    }
    
    /* KEIN X-Button mehr! */
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: calc(100% - 30px);
        margin: 6px 15px;
        border-radius: 12px;
        position: relative;
        z-index: 10 !important;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-left: 4px solid transparent;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        pointer-events: auto !important;
    }
    
    .nav-item:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
        transform: translateX(-5px) scale(1.02);
        border-left-color: var(--accent-color);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .nav-item:nth-child(odd) {
        animation: slideInRight 0.5s ease-out backwards;
    }
    
    .nav-item:nth-child(even) {
        animation: slideInRight 0.5s ease-out 0.1s backwards;
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .has-dropdown {
        position: relative;
        z-index: 200 !important; /* Höher als nav-links (100) */
        pointer-events: auto !important;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 16px;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        border-right: none;
        text-transform: none;
        position: relative;
        z-index: 100;
        cursor: pointer;
        pointer-events: auto !important;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        touch-action: manipulation; /* Verhindert Browser-Zoom-Verzögerung */
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 70%;
        background: var(--accent-color);
        border-radius: 0 4px 4px 0;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        width: 4px;
    }
    
    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        color: var(--accent-color);
        padding-left: 24px;
        text-shadow: 0 2px 8px rgba(214, 77, 25, 0.3);
    }
    
    /* Dropdown in Mobile - Bessere Sichtbarkeit */
    .has-dropdown .dropdown-icon {
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        font-size: 1rem;
        opacity: 1;
        color: #2c2416;
        font-weight: bold;
        background: rgba(255,255,255,0.3);
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
        background: var(--accent-color);
        color: white;
    }
    
    /* Mobile Menu Quick Icons - Oben im Menü */
    .mobile-menu-icons {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        padding: 15px 0 12px 0;
        margin: 0 0 12px 0;
        background: rgba(0, 0, 0, 0.25) !important; /* Dunkler grauer Hintergrund */
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        gap: 4px;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        z-index: 1 !important; /* UNTER den nav-links (z-index 100) */
        pointer-events: auto;
    }
    
    .mobile-icon-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white !important;
        text-decoration: none;
        padding: 6px 3px;
        border-radius: 6px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        min-width: 48px;
        flex: 1;
    }
    
    .mobile-icon-link i {
        font-size: 1rem;
        margin-bottom: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-icon-link span {
        font-size: 0.6rem;
        text-align: center;
        opacity: 0.9;
        line-height: 1.1;
    }
    
    .mobile-icon-link:hover,
    .mobile-icon-link:active {
        background: rgba(235, 94, 40, 0.2);
        transform: translateY(-2px);
    }
    
    .mobile-icon-link:hover i {
        color: var(--accent-color);
        transform: scale(1.1);
    }
    
    /* Desktop: Icons verstecken */
    @media (min-width: 769px) {
        .mobile-menu-icons {
            display: none !important;
        }
        
        /* Meinungen-Link im Über uns Dropdown auf Desktop anzeigen */
        .desktop-only-menu-item {
            display: block !important;
        }
    }
    
    /* Meinungen-Link im Über uns Dropdown nur auf Mobile verstecken */
    .desktop-only-menu-item {
        display: none !important;
    }
    
    .dropdown-menu {
        position: static !important;
        max-height: 0;
        box-shadow: inset 0 4px 10px rgba(0,0,0,0.2);
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
        border-radius: 0 0 10px 10px;
        padding: 0;
        min-width: 100%;
        overflow: hidden;
        z-index: 1;
        margin: 0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 600px !important;
        padding: 10px 0 15px;
        margin-top: 0;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .dropdown-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .has-dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .has-dropdown.active .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
    .has-dropdown.active .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
    .has-dropdown.active .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
    .has-dropdown.active .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
    .has-dropdown.active .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
    .has-dropdown.active .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
    .has-dropdown.active .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
    
    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 10px 16px 10px 26px;
        font-size: 0.8rem;
        font-weight: 500;
        border-left: 3px solid transparent;
        position: relative;
        z-index: 1;
        pointer-events: auto;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        color: rgba(255,255,255,0.9);
    }
    
    .dropdown-menu a::before {
        content: '→';
        margin-right: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        font-weight: bold;
        opacity: 0.9;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: linear-gradient(90deg, rgba(214, 77, 25, 0.2), rgba(255,255,255,0.08));
        border-left-color: var(--accent-color);
        padding-left: 35px;
        color: white;
        transform: translateX(-3px);
    }
    
    .dropdown-menu a:hover::before {
        opacity: 1;
        transform: translateX(5px) scale(1.2);
        color: white;
    }
    
    /* Meinungen als normaler Menüpunkt mit orangem Hintergrund */
    .nav-item.meinungen-item {
        margin: 0;
        order: 10; /* Am Ende der Liste */
    }
    
    /* Meinungen genauso wie andere Menüpunkte, nur mit oranger Hinterlegung */
    .nav-menu .nav-link.btn-meinungen {
        background: rgba(235, 94, 40, 0.2) !important; /* Leichter oranger Hintergrund */
        padding: 15px 30px !important;
        font-weight: 400;
        font-size: 1rem !important;
        color: white !important;
        border: none !important;
        margin: 0 !important;
        display: block !important;
        text-align: left !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        text-shadow: none;
        letter-spacing: normal;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu .nav-link.btn-meinungen:hover {
        background: rgba(235, 94, 40, 0.3) !important;
        padding-left: 35px !important;
        transform: translateX(0);
        box-shadow: none !important;
    }
    
    /* Kein ::before Element für Meinungen */
    .nav-menu .nav-link.btn-meinungen::before {
        display: none !important;
        content: none !important;
    }
    
    /* Hero */
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Sections */
    h2 {
        font-size: 1.75rem;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-heading {
        font-size: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .quick-access-grid,
    .steps-grid,
    .services-grid,
    .memorial-grid,
    .cost-packages {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .footer-bottom-links {
        gap: 15px;
        font-size: 0.75rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
    
    /* Adresse abkürzen auf Mobile */
    .address-full {
        display: none;
    }
    
    .address-short {
        display: inline;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        line-height: 1.8;
        justify-content: center;
    }
    
    .footer-column {
        font-size: 0.85rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column p {
        font-size: 0.85rem;
    }
    
    .footer-links li {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Header für kleine Bildschirme */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Kompakter Header für Smartphones */
    .navbar {
        padding: 10px 0;
    }
    
    .mobile-logo img {
        height: 40px !important;  /* Vergrößert von 35px, aber kleiner als bei 768px */
    }
    
    /* Quick Access direkt unter Header ohne Hero */
    .quick-access {
        margin-top: 55px;
        padding-top: 30px;
        background: linear-gradient(135deg, #f8f7f5 0%, #f3f0ec 100%);
    }
    
    /* Kompaktere Quick Cards auf sehr kleinen Bildschirmen */
    .quick-card {
        min-height: auto;
        padding: 25px 20px;
        backdrop-filter: blur(10px) saturate(160%);
        -webkit-backdrop-filter: blur(10px) saturate(160%);
        border-radius: 16px;
    }
    
    .quick-card i,
    .quick-card .elegant-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .quick-card h3 {
        font-size: 1.1rem;
    }
    
    .quick-card p {
        font-size: 0.9rem;
    }
    
    /* Angepasste Telefon und Menü-Icons */
    .mobile-phone-link {
        width: 36px !important;  /* Vergrößert von 32px */
        height: 36px !important;  /* Vergrößert von 32px */
    }
    
    .mobile-phone-link i {
        font-size: 16px !important;  /* Vergrößert von 14px */
    }
    
    /* Mobile Menu Toggle Striche in Mobile View */
    .mobile-menu-toggle span {
        width: 26px !important;
        height: 3px !important;
        position: absolute !important;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        top: 10px !important;
    }
    
    .mobile-menu-toggle span:nth-child(2) {
        top: 18px !important;
    }
    
    .mobile-menu-toggle span:nth-child(3) {
        top: 26px !important;
    }
    
    .icon-label {
        display: none;
    }
    
    .service-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .service-icon i {
        font-size: 0.9rem !important;
    }
    
    .service-icons {
        gap: 0.4rem;
    }
    
    .phone-box {
        gap: 8px;
    }
    
    .phone-label {
        font-size: 0.6rem;
    }
    
    .phone-number {
        font-size: 0.95rem;
    }
    
    .logo img {
        height: 55px;
    }
    
    /* Quick Access für kleine Bildschirme */
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-card {
        padding: 20px;
        min-height: auto;
        backdrop-filter: blur(10px) saturate(160%);
        -webkit-backdrop-filter: blur(10px) saturate(160%);
        border-radius: 16px;
    }
    
    .quick-card i,
    .quick-card .elegant-icon {
        font-size: 2.5rem;
    }
    
    .quick-access-arrows {
        gap: 15px;
        margin-top: 20px;
    }
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quick-access-header h2 {
        font-size: 1.5rem;
    }
    
    /* Hero für kleine Bildschirme */
    /* Hero bleibt versteckt auf kleinen Bildschirmen */
    /* Hero auf sehr kleinen Bildschirmen */
    .hero {
        display: block !important;
        margin-top: 55px !important;
        height: 35vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .hero-slideshow {
        display: block !important;
    }
    
    .slide {
        display: block !important;
    }
    
    .contact-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-bar span {
        margin: 5px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* iPad mini Override - MUSS NACH der mobilen Media Query kommen! */
@media (min-width: 769px) and (max-width: 820px) {
    /* Überschreibe mobile Regeln für iPad mini - zeige Desktop-Header */
    .header-main {
        padding: 10px 0;
        display: block !important;
    }
    
    .header-contact {
        display: flex !important;
    }
    
    .service-icons {
        display: flex !important;
        gap: 0.6rem;
    }
    
    .phone-box {
        margin-right: 0.5rem;
    }
    
    .phone-number {
        font-size: 1.15rem;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
    
    .phone-label {
        font-size: 0.65rem;
    }
    
    .header-date {
        font-size: 0.65rem;
        display: block !important;
    }
    
    .service-icon {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Verstecke mobile Phone Button im Navbar */
    .mobile-phone {
        display: none !important;
    }
}

/* ===== HAMBURGER X-ANIMATION - FINALE REGEL AM ENDE (ÜBERSCHREIBT ALLES) ===== */
@media screen and (max-width: 768px) {
    button.mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
        visibility: hidden !important;
        display: none !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}

@media screen and (max-width: 480px) {
    button.mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
        visibility: hidden !important;
        display: none !important;
    }
    
    button.mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}

/* Desktop/Mobile Heading Switches */
.mobile-only-heading {
    display: none;
}

.desktop-only-heading {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only-heading {
        display: block;
    }
    
    .desktop-only-heading {
        display: none;
    }
}
