/* ==================================================
   COOKIE BANNER – IMMODIA STYLE
================================================== */

#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    background: rgba(43, 43, 43, 0.96); /* dark-gray */
    backdrop-filter: blur(10px);

    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;

    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

/* Sichtbar */
#cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


/* ================= CONTENT ================= */

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 64px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;

    font-family: 'Manrope', sans-serif;
}


/* ================= TEXT ================= */

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 850px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}


/* ================= BUTTONS ================= */

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-buttons button {
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    background: none;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    transition: all 0.25s ease;
}


/* ACCEPT BUTTON */

#cookie-accept {
    background: var(--accent);
    color: #ffffff;
}

#cookie-accept:hover {
    background: #253f5a; /* dunklere Accent-Variante */
}


/* REJECT BUTTON */

#cookie-reject {
    border-color: rgba(255,255,255,0.4);
}

#cookie-reject:hover {
    background: rgba(255,255,255,0.08);
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}