/* Custom styles für Typografie und Farben */
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }
        
        /* Animationen für das Einblenden beim Scrollen */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            visibility: hidden; /* Added this line */
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
            visibility: visible; /* Added this line */
        }

        /* Überarbeitete FAQ Accordion styles */
        .faq-question {
            cursor: pointer;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        /* Lade-Spinner für AI-Funktion */
        .loader {
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #ec4899; /* Pink */
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Back to Top Button */
        #back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Overlay styles */
        #login-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 1);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        .login-container {
            background-color: #fff;
            /* Made padding smaller */
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
            text-align: center;
            /* Made max-width smaller */
            max-width: 300px;
            width: 90%;
            animation: fadeIn 0.6s ease-out;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .login-container .login-logo {
            /* Made logo smaller */
            max-width: 100px;
            height: 100px;
            margin: 0 auto 10px auto; /* Center horizontally and add bottom margin */
            border-radius: 50%; /* Make it round */
            object-fit: cover; /* Ensure the image covers the area without distortion */
            display: block; /* Ensure margin auto works */
            border: 4px solid #EC4899; /* Pink border around logo */
            box-shadow: 0 0 8px rgba(236, 72, 153, 0.3); /* Pink glow effect reduced */
        }

        .login-container h2 {
            font-family: 'Playfair Display', serif;
            /* Made font size smaller */
            font-size: 2rem; /* Adjusted from 3xl sm:text-4xl */
            color: #EC4899; /* Pink-500 */
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .login-container .coming-soon {
            /* Made font size smaller */
            font-size: 1rem;
            font-weight: 600;
            color: #DB2777; /* Darker pink */
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* General paragraph styling */
        .login-container p {
            color: #4B5563; /* Darker gray for better contrast */
            margin-bottom: 10px;
        }

        .login-container input[type="text"],
        .login-container input[type="password"] {
            width: calc(100% - 24px);
            padding: 12px 12px;
            margin-bottom: 10px;
            border: 1px solid #D1D5DB;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .login-container input[type="text"]:focus,
        .login-container input[type="password"]:focus {
            border-color: #EC4899;
            box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
            outline: none;
        }

        .login-container button {
            background-color: #EC4899;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            /* Made font size smaller */
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Reduced button glow */
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
            width: 100%;
        }

        .login-container button:hover {
            background-color: #DB2777;
            transform: translateY(-2px);
            /* Reduced button glow on hover */
            box-shadow: 0 6px 15px rgba(236, 72, 153, 0.4);
        }

        .login-container #error-message {
            color: #EF4444;
            margin-top: 10px;
            margin-bottom: 10px; /* Added margin to separate from maintenance message */
            font-size: 0.9rem;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
            height: 1em; /* Reserve space to prevent layout shift */
        }

        .login-container #error-message.visible {
            visibility: visible;
            opacity: 1;
        }

        /* Maintenance message moved to the bottom */
        .login-container .maintenance-message {
            font-size: 0.8rem;
            color: #9CA3AF; /* A very light gray */
            margin-top: 15px; /* More space from elements above */
            margin-bottom: 0;
            font-style: italic;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hidden-content {
            display: none;
        }

        .break-words {
            word-break: break-all;
            overflow-wrap: break-word;
        }

        .gallery-grid img {
            display: block;
        }

        .gallery-item {
            border-radius: 1.5rem;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            transition: transform 0.6s ease;
        }

        @media (min-width: 1024px) {
            .gallery-item {
                transition: transform 0.4s ease, box-shadow 0.4s ease;
            }

            .gallery-item:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
            }

            .gallery-item:hover img {
                transform: scale(1.08);
            }
        }

        .maps-placeholder {
            background-color: #ffffff;
            border: 1px dashed #d1d5db;
            padding: 1.5rem;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .maps-placeholder.hidden {
            display: none;
        }

        .cookie-panel {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.75);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .cookie-panel.hidden {
            display: none;
        }

        .cookie-panel__content {
            background: #ffffff;
            color: #111827;
            border-radius: 1.25rem;
            width: min(900px, 100%);
            max-height: 90vh;
            overflow-y: auto;
            padding: 2rem;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
        }

        .cookie-panel__title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cookie-panel__text {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .cookie-panel__links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .cookie-panel__link {
            color: #ec4899;
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-panel__columns {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .cookie-panel__columns {
                flex-direction: row;
            }
        }

        .cookie-panel__column {
            flex: 1;
            background: #f9fafb;
            border-radius: 1rem;
            padding: 1.25rem;
        }

        .cookie-panel__subtitle {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .cookie-panel__category + .cookie-panel__category {
            margin-top: 1rem;
        }

        .cookie-panel__category-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .cookie-panel__category-text {
            font-size: 0.9rem;
            color: #4b5563;
        }

        .cookie-panel__service {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            background: #fff;
        }

        .cookie-panel__service-title {
            font-weight: 600;
        }

        .cookie-panel__service-meta {
            font-size: 0.85rem;
            color: #6b7280;
        }

        .cookie-toggle {
            position: relative;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }

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

        .cookie-toggle__slider {
            width: 48px;
            height: 26px;
            background: #d1d5db;
            border-radius: 999px;
            position: relative;
            transition: background 0.3s ease;
        }

        .cookie-toggle__slider::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            top: 3px;
            left: 3px;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .cookie-toggle input:checked + .cookie-toggle__slider {
            background: #ec4899;
        }

        .cookie-toggle input:checked + .cookie-toggle__slider::after {
            transform: translateX(22px);
        }

        .cookie-panel__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .cookie-button {
            border: none;
            cursor: pointer;
            padding: 0.75rem 1.75rem;
            border-radius: 999px;
            font-weight: 600;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .cookie-button--primary {
            background: #111827;
            color: #ffffff;
        }

        .cookie-button--ghost {
            background: transparent;
            border: 1px solid #d1d5db;
            color: #111827;
        }

        .cookie-button--ghost-light {
            background: transparent;
            border: 1px solid #f3f4f6;
            color: #f3f4f6;
        }

        .cookie-button--accent {
            background: #ec4899;
            color: #ffffff;
        }

        .cookie-button:hover {
            transform: translateY(-1px);
        }

        .cookie-panel__powered {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 1rem;
            text-align: center;
        }

        .cookie-preferences-button {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            background: #ec4899;
            color: #ffffff;
            border: none;
            border-radius: 999px;
            padding: 0.65rem;
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
            cursor: pointer;
            z-index: 1000;
        }

        .cookie-preferences-button svg {
            width: 22px;
            height: 22px;
            color: #ffffff;
        }

        .cookie-preferences-button:hover {
            opacity: 0.9;
        }

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

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #111827;
            color: #f3f4f6;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
            z-index: 9000;
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-banner__inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .cookie-banner__inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .cookie-banner__kicker {
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: #f472b6;
        }

        .cookie-banner__text {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-banner__links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.75rem 0;
        }

        .cookie-banner__buttons {
            display: flex;
            gap: 0.75rem;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }
