/* cookie-consent.css */

/* Cookie Banner Overlay */
#cookie-consent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(96, 80, 60, 0.85);
    z-index: 9998;
}

#cookie-consent-overlay.show {
    display: block;
}

/* Cookie Banner Container */
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #f5f5f5;
    border-top: 3px solid #60503c;
    box-shadow: 0 -4px 10px rgba(96, 80, 60, 0.3);
    animation: slideUp 0.4s ease-out;
}

#cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Banner Content */
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-consent-text {
    font-size: 1.6rem;
    color: #565656;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-consent-text strong {
    color: #c26148;
    font-weight: bold;
}

.cookie-consent-text a {
    color: #0099ff;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-consent-text a:hover {
    color: #c26148;
}

/* Button Container */
.cookie-consent-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Primary Button - Alle akzeptieren */
.cookie-btn-accept {
    display: inline-block;
    padding: 1.8rem 4rem;
    background-color: #008000;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(194, 97, 72, 0.3);
}

.cookie-btn-accept:hover {
    background-color: #b2d4b2;
    color: #60503c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(194, 97, 72, 0.4);
}

/* Secondary Button - Nur notwendige */
.cookie-btn-decline {
    display: inline-block;
    padding: 1.2rem 2rem;
    background-color: transparent;
    color: #60503c !important;
    text-decoration: underline;
    font-weight: normal;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
    color: #c26148 !important;
    text-decoration: none;
}

/* Cookie Settings Link im Footer */
.cookie-settings-link {
    display: inline-block;
    margin-top: 1rem;
    color: #ffffff !important;
    text-decoration: underline;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-settings-link:hover {
    color: #c26148 !important;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1.5rem;
    }

    .cookie-consent-text {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-btn-accept {
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.8rem;
    }

    .cookie-btn-decline {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}
