@charset "utf-8";
/* CSS-Variablen für schnelles Anpassen des Glaseffekts */
:root {
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-blur: blur(12px);
    --radius-large: 24px;
    --radius-small: 16px;
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    --brand-blue: #98c1fc;
    --text-dark: #2c5da1;
    --link-blue: #2c5da1;
}

/* Globales Reset & Body Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, #fbfdff 0%, #98c1fc 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.5;
}

/* SEO Hilfsklasse für Barrierefreiheit */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Zentrierter Haupt-Glasblock */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header & Navigation */
.main-header {
    width: 100%;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-area a {
    text-decoration: none;
    color: inherit;
}

.logo-placeholder {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-small);
    border: 0px dashed var(--brand-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #2c5da1;
    font-weight: 540;
    transition: color 0.3s ease;
    padding: 5px 8px;
    border-radius: 6px;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #E2890D;
    background: rgba(255, 255, 255, 0.2);
}

/* Durchgezogene Linien */
.divider {
    border: none;
    height: 2px;
    background-color: var(--brand-blue);
    width: 100%;
}

/* Hauptinhalt & Karussell */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

/* Nimmt 3/4 der Blockbreite ein (75%) */
.carousel-container {
    width: 75%;
    overflow: hidden;
    border-radius: var(--radius-small);
    border: 4px solid #ffffff; /* Schmale weiße Ränder */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.carousel-slider {
    display: flex;
    width: 400%; /* 4 Bilder = 400% */
    animation: rotateCarousel 16s infinite ease-in-out; /* Ganz langsames automatisches Wechseln */
}

.carousel-slide {
    width: 25%; /* Jedes Bild nimmt genau 1/4 des Sliders ein */
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

/* CSS-Animation für das schnelle Karussell (4 Stufen) */
@keyframes rotateCarousel {
    0%, 20% { transform: translateX(0); }
25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

/* Glassmorphismus-Banner zentriert und auf maximal 75% Breite begrenzt */
.cookie-glass-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 75vw; /* Maximal drei Viertel so lang wie die Internetseite */
    
    /* Helles Glassmorphismus-Design */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    
    color: #2d3748;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    z-index: 99999;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 12px 24px;
}

/* ==========================================================================
   GLASMORPHISMUS COOKIE-BAR STYLE
   ========================================================================== */

.cookie-bar-container {
    position: fixed;
    bottom: 20px;
    left: 5%;
    width: 75%;
    max-width: 1400px;
    z-index: 999999; /* Stellt sicher, dass die Bar über allem anderen liegt */
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    /* Hochwertiger Glasmorphismus-Effekt (Transparent + Blur) */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1d1d1f;
    box-sizing: border-box;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.cookie-bar-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-bar-text p {
    margin: 0;
}

.cookie-bar-text a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

/* Button-Layout */
.cookie-bar-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cookie-btn:active {
    transform: scale(0.97);
}

/* Rechtlich wichtig: Akzeptieren und Ablehnen optisch gleichwertig gestalten */
.btn-accept {
    background: rgba(0, 122, 255, 0.8);
    color: white;
}
.btn-accept:hover {
    background: rgba(0, 122, 255, 0.95);
}

.btn-reject {
    background: rgba(40, 40, 40, 0.7);
    color: white;
}
.btn-reject:hover {
    background: rgba(40, 40, 40, 0.85);
}

.btn-settings {
    background: rgba(255, 255, 255, 0.4);
    color: #1d1d1f;
}
.btn-settings:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Granulares Einstellungs-Menü */
.cookie-modal {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 5px;
}

.hidden {
    display: none !important;
}

.modal-content h3 {
    margin: 0 0 12px 0;
    font-size: 15px;
}

.cookie-option {
    margin-bottom: 12px;
    font-size: 13px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-option p {
    margin: 3px 0 0 22px;
    color: #424245;
}

/* --- Responsive Anpassung für mobile Endgeräte --- */
@media (max-width: 900px) {
    .cookie-bar-container {
        left: 15px;
        width: calc(100% - 30px);
        bottom: 15px;
        padding: 15px;
    }
    
    .cookie-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-bar-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

































