/* Cookie Consent Banner - RGPD compliant */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 4px solid #1A3A5F;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    font-family: 'Montserrat', sans-serif;
}

#cookie-consent.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1A3A5F;
}

.cookie-text strong {
    font-weight: 700;
    color: #1A3A5F;
}

.cookie-text a {
    color: #F39200;
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.25rem;
    border: 2px solid #1A3A5F;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cookie-btn.accept {
    background: #1A3A5F;
    color: white;
}

.cookie-btn.accept:hover {
    background: #F39200;
    border-color: #F39200;
}

.cookie-btn.decline {
    background: white;
    color: #1A3A5F;
}

.cookie-btn.decline:hover {
    background: #1A3A5F;
    color: white;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-btn {
        flex: 1;
        min-width: 140px;
    }
}
