/* Bootstrap-Enhanced CSS for plaettliservice.ch */

:root {
    /* Logo-optimierte Farbpalette für Plättliservice */
    /* 🎨 Hauptfarben (Primärfarben) - basierend auf Logo-Blautönen */
    --bs-primary: #1F5B85;        /* Primär-Blau - Header, Buttons, Links */
    --bs-secondary: #5EA9D0;      /* Hellblau - Hover-Zustände, Sekundär-Buttons */
    --bs-warning: #00B5C9;        /* Frisches Türkis - Call-to-Action */
    --bs-success: #38a169;        /* Grün für Erfolg/Bestätigung */
    --bs-info: #5EA9D0;           /* Hellblau für Informationen */
    --bs-light: #F5F7FA;          /* Sanftes Grau - Hintergrundflächen */
    --bs-dark: #0F3A5A;           /* Dunkelblau - Footer, Text-Highlights */

    /* Custom Farben - Logo-harmonisch */
    --color-primary: #1F5B85;     /* Primär-Blau - Hauptfarbe */
    --color-secondary: #5EA9D0;   /* Hellblau - Sekundärfarbe */
    --color-accent: #00B5C9;      /* Türkis - Akzentfarbe für Highlights */
    --color-success: #38a169;     /* Grün für Erfolg */
    --color-white: #FFFFFF;       /* Reines Weiß */
    --color-gray-50: #F5F7FA;     /* Sanftes Grau - Cards, Formulare */
    --color-gray-100: #E8DED1;    /* Sandbeige - dezente Flächen */
    --color-gray-200: #CED6DC;    /* Mittelgrau - Rahmen, Trennerlinien */
    --color-gray-600: #555555;    /* Sekundärer Text */
    --color-gray-800: #333333;    /* Primärer Text */
    --color-gray-900: #0F3A5A;    /* Dunkelblau für starken Kontrast */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

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

.btn-warning:hover {
    background-color: #009aab; /* Dunkleres Türkis */
    border-color: #009aab;
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary) !important;
}

/* Logo Styles */
.navbar-logo {
    height: 72px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -8px;
    margin-bottom: -8px;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Responsive Logo Sizes */
@media (max-width: 576px) {
    .navbar-logo {
        height: 64px;
        width: auto;
        max-width: 64px;
        margin-top: -6px;
        margin-bottom: -6px;
    }

/* Swipe Gallery Styles */
.swipe-gallery {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

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

.gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.gallery-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-description {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.gallery-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1F5B85;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Dots Navigation */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #1F5B85 #f1f3f4;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 2px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #1F5B85;
    border-radius: 2px;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail.active {
    border-color: #1F5B85;
    transform: scale(1.05);
}

.gallery-thumbnail:hover {
    border-color: #5EA9D0;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        height: 300px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .gallery-description {
        font-size: 0.85rem;
    }

    .gallery-thumbnails {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        height: 250px;
    }

    .gallery-thumbnails {
        display: none;
    }
}

/* Loading Animation */
.gallery-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image[loading="lazy"].loaded {
    opacity: 1;
}

.footer-logo {
    height: 12px !important;
    width: auto !important;
    max-height: 12px !important;
    max-width: 12px !important;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
    min-height: 56px;
}

.navbar .container {
    min-height: 56px;
    display: flex;
    align-items: center;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-footer {
    background-color: #0F3A5A !important;
}

.text-footer-secondary {
    color: #D1D5DB !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-gray-800); /* Primärer Text: #333333 */
    background-color: var(--color-white);
    padding-top: 76px; /* Für fixed navbar */
}

/* Custom Bootstrap Enhancements */
.min-vh-75 {
    min-height: 75vh;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Hero Section Enhancements */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-gray-600); /* Sekundärer Text: #555555 */
}

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

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-gray-50);
}

/* Header & Navigation */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent); /* Türkis für Navigation-Akzente */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Bootstrap Override für btn-secondary - verhindert türkise Farben */
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background: #1ea854 !important;
    color: white !important;
    border-color: #1ea854 !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25) !important;
    text-decoration: none !important;
}

/* Verhindert Bootstrap btn-secondary Konflikte */
a.btn-secondary,
button.btn-secondary {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}

a.btn-secondary:hover,
button.btn-secondary:hover {
    background: #1ea854 !important;
    border-color: #1ea854 !important;
    color: white !important;
    text-decoration: none !important;
}

/* Gratis Offerte Button - gleicher Effekt wie WhatsApp Nachricht */
.btn-gratis-offerte {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none !important;
    transition: all 0.3s ease;
    /* Bootstrap Variable Overrides */
    --bs-btn-bg: #25D366;
    --bs-btn-border-color: #25D366;
    --bs-btn-color: white;
    --bs-btn-hover-bg: #1ea854;
    --bs-btn-hover-border-color: #1ea854;
    --bs-btn-hover-color: white;
}

.btn-gratis-offerte:hover {
    background: #1ea854 !important;
    color: white !important;
    border-color: #1ea854 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 168, 84, 0.4);
    text-decoration: none !important;
}

.btn-gratis-offerte:focus,
.btn-gratis-offerte:active {
    background: #1ea854 !important;
    color: white !important;
    border-color: #1ea854 !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25) !important;
    text-decoration: none !important;
}

/* ========================================
   TRUST INDICATORS - Prominente USPs
======================================== */

.trust-indicator-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-indicator-small:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.trust-indicator-small i {
    color: #FFC107;
    font-size: 1rem;
}

/* Mobile Anpassungen für kleine Trust Indicators */
@media (max-width: 768px) {
    .trust-indicator-small {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    .trust-indicator-small i {
        font-size: 0.9rem;
    }
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-secondary); /* Hellblau für Hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #25D366 !important; /* WhatsApp Grün */
    color: white !important;
    border: 2px solid #25D366 !important;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
    text-decoration: none !important;
    transition: all 0.3s ease;
    /* Bootstrap Variable Overrides */
    --bs-btn-bg: #25D366;
    --bs-btn-border-color: #25D366;
    --bs-btn-color: white;
    --bs-btn-hover-bg: #1ea854;
    --bs-btn-hover-border-color: #1ea854;
    --bs-btn-hover-color: white;
}

.btn-secondary:hover {
    background: #1ea854 !important; /* Dunkleres WhatsApp Grün */
    color: white !important;
    border: 2px solid #1ea854 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 168, 84, 0.4);
    text-decoration: none !important;
}

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

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

/* Text Kontrast Verbesserungen */
.text-dark {
    color: #212529 !important; /* Sehr dunkles Grau für besseren Kontrast */
}

.lead.text-dark {
    font-weight: 500; /* Etwas fetter für bessere Lesbarkeit */
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--color-accent); /* Türkis für Icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Services Grid - spezielle Behandlung für Leistungen */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-800);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

/* Footer */
.footer {
    background: var(--color-gray-900); /* Dunkelblau für Footer */
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

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

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--color-gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-secondary); /* Hellblau für Footer-Links */
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-600);
    padding-top: 1rem;
    text-align: center;
    color: var(--color-gray-200);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 58, 90, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--bs-warning);
    font-size: 1.1rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #D1D5DB; /* Hellgrau wie im Footer für bessere Lesbarkeit */
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cookie-banner .btn-accept {
    background: var(--bs-warning);
    color: var(--bs-dark);
    border: 2px solid var(--bs-warning);
}

.cookie-banner .btn-accept:hover {
    background: #00a0b5;
    border-color: #00a0b5;
    transform: translateY(-1px);
}

.cookie-banner .btn-settings {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner .btn-decline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.cookie-banner .btn-decline:hover {
    background: #ff6b6b;
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--bs-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background-color: #6b7280;
    cursor: not-allowed;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner .btn {
        width: 100%;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }
}
