/* Modernes dunkles Design für Slikk's Soulfood - Restaurant Speisekarte Style */
:root {
    /* Hauptfarben - Dunkles elegantes Schema */
    --primary-color: #c9a96e;
    --secondary-color: #8b6914;
    --accent-color: #ff6b35;
    --gold-accent: #d4af37;
    
    /* Dunkle Hintergründe */
    --bg-primary: #1a1a1a;
    --bg-secondary: #252525;
    --bg-tertiary: #333333;
    --bg-card: #2a2a2a;
    --card-bg: #2a2a2a;
    --card-header-bg: #333333;
    --border-color: #404040;
    
    /* Textfarben */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #888888;
    --text-dark: #1a1a1a;
    
    /* Legacy Variablen für Kompatibilität */
    --dark-color: #1a1a1a;
    --light-color: #2a2a2a;
    --text-light: #b8b8b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
}

/* Animationen */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles - Modernes dunkles Design */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section - Modernisiert mit Slideshow */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(37, 37, 37, 0.8)),
                url('../images/hero-bg.png') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Birthstone', cursive;
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

/* H2 Überschriften mit Birthstone Font */
h2 {
    font-family: 'Birthstone', cursive !important;
    font-size: 2.5rem !important;
    font-weight: 400 !important;
}

/* Filigrane Hero-Produktansicht */
.hero-products {
    padding: 1.5rem;
}

.product-card-simple {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.product-card-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image-simple {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

.product-category-simple {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-title-simple {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.product-price-simple {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}



.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.8;
}


/* Sections - Dunkles Design */
.section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section.bg-white {
    background: var(--bg-secondary) !important;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-accent));
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 110, 0.4);
}

/* Features Section - Dunkles Design */
.feature-card, .card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
    border-radius: 20px !important;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before, .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover, .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 169, 110, 0.4);
}

.feature-card:hover::before, .card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-title, .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.card-body {
    background: transparent !important;
    color: var(--text-secondary) !important;
}

.card-text {
    color: var(--text-secondary) !important;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Order Times Alert - Modernisiert */
.order-alert {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 143, 101, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.order-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Footer - Modernisiert mit besserer Lesbarkeit */
.footer {
    background: linear-gradient(135deg, #0f0f0f, var(--bg-primary));
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer p, .footer .text-muted {
    color: var(--text-secondary) !important;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    color: var(--text-secondary) !important;
}

.footer-bottom p {
    color: var(--text-secondary) !important;
    margin: 0;
    text-align: left;
}

.footer-bottom .col-md-6:first-child p {
    text-align: left !important;
}

.footer-bottom .col-md-6:last-child {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}

/* Cart Icon - Einheitliche Schriftart */
.cart-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 2px 6px;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.cart-text {
    margin-left: 0.25rem;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-products {
        padding: 1rem;
    }
    
    .product-card-simple {
        padding: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .product-image-simple {
        aspect-ratio: 16/9;
    }
    
    .product-title-simple {
        font-size: 0.9rem;
    }
    

    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-products {
        padding: 1rem;
    }
    
    .product-card-simple .row {
        align-items: center;
    }
    
    .product-title-simple {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .product-price-simple {
        font-size: 1rem;
    }
    

}

/* Compact Order Button für Produktlisten - Neu designt */
.btn-order-compact {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
}

.btn-order-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-order-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
    border-color: var(--primary-color);
}

.btn-order-compact:hover::before {
    transform: scale(1);
}

.btn-order-compact:hover {
    color: var(--bg-primary);
}

.btn-order-compact:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}

.btn-order-compact:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
}

.btn-order-compact.disabled {
    border-color: var(--text-muted);
    color: var(--text-muted);
    cursor: not-allowed;
    background: transparent;
    opacity: 0.5;
    pointer-events: none;
}

.btn-order-compact.disabled::before {
    display: none;
}

/* Responsive Anpassungen für kompakte Buttons */
@media (max-width: 768px) {
    .btn-order-compact {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-order-compact {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #d2b48c, #8b7355, #6b5b47) !important;
    border: 2px solid #8b7355 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: white !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #c19a6b, #6b5b47, #5a4a37) !important;
    border-color: #6b5b47 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 115, 85, 0.4);
    color: white !important;
}

.btn-primary:active,
.btn-primary:active:focus {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(139, 115, 85, 0.5) !important;
    background: linear-gradient(135deg, #a67c52, #5a4a37, #4a3a29) !important;
    border-color: #5a4a37 !important;
}

.btn-outline-primary {
    color: #8b7355 !important;
    border-color: #8b7355 !important;
    background: transparent !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: linear-gradient(135deg, #d2b48c, #8b7355) !important;
    border-color: #8b7355 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-outline-primary:active {
    background: linear-gradient(135deg, #a67c52, #6b5b47) !important;
    border-color: #6b5b47 !important;
    transform: translateY(0);
}

/* Custom Primary Button - für Call-to-Action Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, #d2b48c, #8b7355, #6b5b47) !important;
    border: 2px solid #8b7355 !important;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #c19a6b, #6b5b47, #5a4a37) !important;
    border-color: #6b5b47 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    color: white !important;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.5);
}

.btn-primary-custom:focus {
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3), 0 0 0 3px rgba(139, 115, 85, 0.3);
    outline: none;
}

/* Text Primary Color Override */
.text-primary {
    color: var(--primary-color) !important;
}

/* Border Primary Color Override */
.border-primary {
    border-color: var(--primary-color) !important;
}

/* Background Primary Color Override */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Link Colors */
a.text-primary:hover,
a.text-primary:focus {
    color: var(--accent-color) !important;
}

/* Alert Primary Override */
.alert-primary {
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
}

/* Badge Primary Override */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Accordion Dunkles Design */
.accordion-item {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
    margin-bottom: 0.5rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border: none !important;
    font-weight: 500;
    font-size: 1rem !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(201, 169, 110, 0.1) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-body {
    background-color: var(--bg-tertiary) !important;
    color: var(--text-secondary) !important;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* Checkbox und Radio Buttons */
.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 110, 0.25) !important;
}

.form-check-label {
    color: var(--text-secondary) !important;
}

.form-check-label a {
    color: var(--primary-color) !important;
}

/* Form Control Focus Override - Dunkles Design */
.form-control, .form-select {
    background-color: var(--bg-tertiary) !important;
    border-color: rgba(201, 169, 110, 0.3) !important;
    color: var(--text-primary) !important;
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25) !important;
    color: var(--text-primary) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-secondary) !important;
    font-weight: 500;
}

/* Nav Pills Primary Override */
.nav-pills .nav-link.active {
    background-color: var(--primary-color) !important;
}

/* Progress Bar Primary Override */
.progress-bar {
    background-color: var(--primary-color) !important;
}

/* Table Primary Override */
.table-primary {
    --bs-table-bg: rgba(212, 175, 55, 0.1) !important;
    --bs-table-striped-bg: rgba(212, 175, 55, 0.05) !important;
    --bs-table-hover-bg: rgba(212, 175, 55, 0.075) !important;
    --bs-table-active-bg: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--primary-color) !important;
}

/* Dropdown Item Active Override */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
}

/* List Group Item Primary Override */
.list-group-item-primary {
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    color: var(--dark-color) !important;
}

/* Pagination Primary Override */
.page-link {
    color: var(--primary-color) !important;
}

.page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.page-link:hover {
    color: var(--accent-color) !important;
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--primary-color) !important;
}

/* Loading Animation - Modernisiert */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Moderne Glasmorphism-Effekte */
.glass-effect {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Improved Responsive Design */

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .slideshow-container {
        height: 320px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-image {
        height: 120px;
    }
    
    .slide-title {
        font-size: 1.1rem;
    }
    
    .slide-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Responsive für btn-primary-custom */
@media (max-width: 768px) {
    .btn-primary-custom {
        padding: 14px 30px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 576px) {
    .btn-primary-custom {
        padding: 12px 25px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .slide-content {
        padding: 0.8rem;
    }
    
    .slide-image {
        height: 100px;
    }
    
    .slide-title {
        font-size: 1rem;
    }
    
    .slide-bottom {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .slide-btn {
        text-align: center;
        justify-content: center;
    }
}

/* Global Konsistente Textfarben für dunkles Design */
.container h1, .container h2, .container h3, .container h4, .container h5, .container h6 {
    color: var(--text-primary) !important;
}

.container p:not(.footer p):not(.footer-bottom p) {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Globale Karten-Styles für einheitliches Design */
.card:not(.contact-info-card):not(.contact-form-card) {
    background: var(--bg-card) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    color: var(--text-primary) !important;
}

.card-header {
    background: rgba(201, 169, 110, 0.1) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2) !important;
    color: var(--text-primary) !important;
}

/* Editor Content Optimierung - Entfernt überflüssige Abstände am Ende */
.card-body > *:last-child {
    margin-bottom: 0 !important;
}

.card-body p:last-child,
.card-body blockquote:last-child, 
.card-body div:last-child,
.card-body h1:last-child,
.card-body h2:last-child,
.card-body h3:last-child,
.card-body h4:last-child,
.card-body h5:last-child,
.card-body h6:last-child {
    margin-bottom: 0 !important;
}

/* Spezifische Regel für About-Seite */
.card-body .blockquote-footer {
    margin-bottom: 0 !important;
}

.card-body blockquote {
    margin-bottom: 0 !important;
}

/* Sehr spezifische Regel für das letzte Element in Card-Body */
.card-body *:last-child,
.card-body *:last-child *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Responsive Bilder aus Editor */
.card-body img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

/* Responsive Bilder auf mobilen Geräten */
@media (max-width: 768px) {
    .card-body img {
        margin: 0.5rem 0;
        border-radius: 6px;
    }
}

/* Mobile Order Button */
.mobile-order-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3) !important;
}

.mobile-order-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4) !important;
}

.mobile-order-btn i {
    font-size: 0.8rem;
    margin-right: 0.25rem;
}

.card-title {
    color: var(--text-primary) !important;
}

.card-text {
    color: var(--text-secondary) !important;
}

/* Alert-Boxes einheitlich */
.alert:not(.footer .alert) {
    background: rgba(201, 169, 110, 0.1) !important;
    border: 1px solid rgba(201, 169, 110, 0.3) !important;
    color: var(--text-primary) !important;
}

.alert-warning {
    background: rgba(255, 107, 53, 0.1) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
}

/* Contact Page Layout Optimierung */
@media (min-width: 992px) {
    .contact-info-card {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 991px) {
    .contact-info-card .card-body {
        padding: 2rem !important;
    }
    
    .contact-form-card .card-body {
        padding: 2rem !important;
    }
}

@media (max-width: 576px) {
    .contact-info-card .card-body,
    .contact-form-card .card-body {
        padding: 1.5rem !important;
    }
    
    .contact-info-card h4,
    .contact-form-card h4 {
        font-size: 1.3rem !important;
    }
}

/* Filigrane Kategorie-Navigation */
.btn-outline-light:hover {
    background: var(--primary-color) !important;
    color: var(--bg-primary) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-outline-light:hover .badge {
    background: var(--bg-primary) !important;
    color: var(--primary-color) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Custom Toast Styles - Zentral positioniert */
.custom-toast-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    pointer-events: none !important;
}

.custom-toast {
    pointer-events: auto !important;
    min-width: 300px !important;
    max-width: 500px !important;
    background: var(--bg-card) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 169, 110, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    margin-bottom: 10px !important;
}

.custom-toast .toast-body {
    color: var(--text-primary) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    padding: 20px 50px 20px 20px !important;
    text-align: center !important;
}

.custom-toast.toast-success {
    border-color: #28a745 !important;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(40, 167, 69, 0.1) 100%) !important;
}

.custom-toast.toast-success .toast-body::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    font-size: 1.3em;
}

.custom-toast.toast-error {
    border-color: #dc3545 !important;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(220, 53, 69, 0.1) 100%) !important;
}

.custom-toast.toast-error .toast-body::before {
    content: "⚠ ";
    color: #dc3545;
    font-weight: bold;
    font-size: 1.3em;
}

.custom-toast.toast-info {
    border-color: var(--primary-color) !important;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 110, 0.1) 100%) !important;
}

.custom-toast.toast-info .toast-body::before {
    content: "ℹ ";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3em;
}

.custom-toast .btn-close {
    position: absolute !important;
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    opacity: 0.8 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.custom-toast .btn-close:hover {
    opacity: 1 !important;
    color: var(--text-primary) !important;
    background: rgba(201, 169, 110, 0.2) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Toast Animation */
.custom-toast.showing {
    animation: toastSlideIn 0.4s ease-out;
}

.custom-toast.hiding {
    animation: toastSlideOut 0.3s ease-in;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

/* Hero Raucheffekt */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.smoke-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(201, 169, 110, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: smokeRise infinite linear;
}

.smoke-1 {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.smoke-2 {
    width: 80px;
    height: 80px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: -2s;
}

.smoke-3 {
    width: 50px;
    height: 50px;
    left: 40%;
    animation-duration: 12s;
    animation-delay: -4s;
}

.smoke-4 {
    width: 70px;
    height: 70px;
    left: 60%;
    animation-duration: 9s;
    animation-delay: -1s;
}

.smoke-5 {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 11s;
    animation-delay: -3s;
}

.smoke-6 {
    width: 40px;
    height: 40px;
    left: 85%;
    animation-duration: 7s;
    animation-delay: -5s;
}

@keyframes smokeRise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(40px) scale(1.2);
    }
}

/* Hero Section Z-Index Anpassung */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}