/* Styles pour le bandeau de consentement aux cookies */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Dark background matching footer */
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS */
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid var(--secondary-color, #e67e22);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--secondary-color, #e67e22);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ecf0f1;
}

.cookie-text a {
    color: var(--secondary-color, #e67e22);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background-color: var(--secondary-color, #e67e22);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #bdc3c7;
    color: #bdc3c7;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
