/* ===== ALLGEMEINE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #F9FBFD;
    color: #1E2A3E;
    scroll-behavior: smooth;
}

.fa-star { color: #FFB800; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

:root {
    --primary: #3857a5;
    --primary-dark: #1f3587;
    --secondary: #1E2A3E;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 28px -12px rgba(0,0,0,0.1);
}

/* ===== HEADER ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0.5rem 0;
}
.site-header.scrolled {
    position: fixed;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(2px);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.logo-img {
    width: 200px;
    height: 130px;
    transition: all 0.3s ease;
    display: block;
}
.scrolled .logo-img,
.scrolled .logo-img img {
    width: 140px;
    height: 90px;
}
.logo-img img {
    height: 120px;
}
.logo-img svg {
    width: 100%;
    height: 100%;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1E2A3E;
    transition: color 0.2s;
    font-weight: 600;
}
.site-header.scrolled .nav-links a {
    color: #2C3E50;
}
.nav-links a:hover { color: var(--primary); }
.phone-icon {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.phone-icon:hover {
    background: var(--primary-dark);
    color: white;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
    border-radius: 8px;
    transition: all 0.2s;
}
.hamburger i {
    font-size: 1.8rem;
    color: #1E2A3E;
    transition: color 0.2s;
}
.scrolled .hamburger i {
    color: #1E2A3E;
}
.hamburger:hover {
    background: rgba(0,0,0,0.05);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 2rem 1.5rem;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1E2A3E;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef2f8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.mobile-nav a i {
    width: 24px;
    color: var(--primary);
}
.mobile-nav a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}
.mobile-nav .phone-icon-mobile {
    background: var(--primary);
    color: #ecd65a;
    border-radius: 40px;
    padding: 0.75rem 1rem;
    justify-content: center;
    margin-top: 1rem;
    border-bottom: none;
}
.mobile-nav .phone-icon-mobile i {
    color: #ecd65a;
}
.mobile-nav .close-menu {
    background: none;
    border: none;
    font-size: 1.8rem;
    align-self: flex-end;
    cursor: pointer;
    color: #1E2A3E;
    margin-bottom: 1rem;
}
.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay-blur.active {
    opacity: 1;
    visibility: visible;
}

/* ===== WETTER-WIDGET ===== */
.weather-fixed {
    position: fixed;
    top: 0px;
    right: 1px;
    z-index: 999;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 96px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
}
.weather-fixed:hover {
    width: 220px;
    background: white;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
}
.weather-fixed .weather-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.6rem;
    gap: 0.5rem;
}
.weather-fixed .weather-compact i {
    font-size: 1.6rem;
}
.weather-fixed .temp-compact {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.weather-fixed .warning-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.weather-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F8FAFE;
    padding: 0 0.8rem;
    font-size: 0.7rem;
    border-top: 1px solid #eef2f8;
}
.weather-fixed:hover .weather-expanded {
    max-height: 140px;
    padding: 0.6rem 0.8rem;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    margin: 0.4rem 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.25s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--primary);
    color: #ecd65a;
    box-shadow: 0 4px 10px rgba(93, 93, 93, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    background: #242b3c;
    color: #C9D9E8;
    padding: 2rem 0;
}

/* ===== RESPONSIVE (global) ===== */
@media (max-width: 992px) {
    .navbar { flex-direction: row; justify-content: space-between; align-items: center; }
    .nav-links { display: none; }
    .hamburger { display: block; }
}
@media (max-width: 768px) {
    .weather-fixed { top: 0px; left: 175px; width: 96px; }
    .weather-fixed:hover { width: 200px; }
    .navbar { padding: 0.5rem 0; }
    .logo-img { width: 160px; height: 100px; }
    .logo-img img { height: 90px; width: auto; }
    .scrolled .logo-img { width: 130px; height: 80px; }
}
@media (max-width: 480px) {
    .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
} 


    :root {
        --cookie-primary: #3857a5;
        --cookie-primary-light: #4c6fb5;
        --cookie-white: #ffffff;
        --cookie-light-grey: #f5f7fa;
        --cookie-border: #e4e9f0;
        --cookie-text: #2c3e50;
        --cookie-text-muted: #64748b;
        --cookie-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.03);
    }
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: var(--cookie-white);
        border-top: 1px solid var(--cookie-border);
        box-shadow: var(--cookie-shadow);
        transform: translateY(100%);
        transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-banner-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.25rem 2rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        background: var(--cookie-white);
    }
    .cookie-text { flex: 3; min-width: 240px; }
    .cookie-title {
        font-weight: 600;
        font-size: 1rem;
        color: var(--cookie-primary);
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cookie-title i { font-size: 1.2rem; }
    .cookie-description {
        font-size: 0.85rem;
        line-height: 1.45;
        color: var(--cookie-text);
        margin: 0;
        max-width: 680px;
    }
    .cookie-description a {
        color: var(--cookie-primary);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px dashed var(--cookie-primary);
        transition: color 0.2s;
    }
    .cookie-description a:hover { color: var(--cookie-primary-light); border-bottom-style: solid; }
    .cookie-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        flex-shrink: 0;
    }
    .cookie-btn {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        background: transparent;
        letter-spacing: -0.2px;
    }
    .cookie-btn-primary {
        background: var(--cookie-primary);
        color: white;
        box-shadow: 0 2px 6px rgba(56,87,165,0.2);
    }
    .cookie-btn-primary:hover {
        background: var(--cookie-primary-light);
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(56,87,165,0.2);
    }
    .cookie-btn-secondary {
        background: var(--cookie-light-grey);
        color: var(--cookie-text);
        border: 1px solid var(--cookie-border);
    }
    .cookie-btn-secondary:hover { background: #eef2f9; border-color: #cdd9ed; }
    .cookie-btn-link {
        color: var(--cookie-text-muted);
        padding: 0.6rem 0.8rem;
    }
    .cookie-btn-link:hover { color: var(--cookie-primary); background: rgba(56,87,165,0.05); }
    .cookie-pref-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.2s ease;
        background: var(--cookie-light-grey);
        border-top: 1px solid var(--cookie-border);
        font-size: 0.8rem;
    }
    .cookie-pref-panel.open {
        max-height: 280px;
        padding: 1rem 2rem 1.2rem;
    }
    .pref-title {
        font-weight: 600;
        color: var(--cookie-text);
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }
    .pref-options {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .pref-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: white;
        padding: 0.4rem 0.9rem;
        border-radius: 40px;
        border: 1px solid var(--cookie-border);
    }
    .pref-item label { font-weight: 500; color: var(--cookie-text); }
    .pref-item input { accent-color: var(--cookie-primary); width: 16px; height: 16px; margin: 0; }
    .save-pref-btn {
        margin-top: 0.8rem;
        background: var(--cookie-primary);
        color: white;
        border: none;
        border-radius: 40px;
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        font-weight: 500;
        cursor: pointer;
        transition: 0.2s;
    }
    .save-pref-btn:hover { background: var(--cookie-primary-light); }
    @keyframes subtleFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .cookie-banner.show { animation: subtleFadeIn 0.3s ease-out; }
    @media (max-width: 720px) {
        .cookie-banner-inner { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem; }
        .cookie-buttons { width: 100%; justify-content: flex-start; }
        .cookie-pref-panel.open { padding: 1rem 1.5rem; max-height: 340px; }
        .pref-options { flex-direction: column; gap: 0.7rem; }
        .pref-item { width: fit-content; }
    }